Hi, i dont find the way to set the ticks values between 0 and 1 in the domain axis, ¿is there any way to do such thing?
It would be wonderful to be able to set values like 0, 0.2, 0.4 0.6 0.8 and 1.0.
code:
charts.TimeSeriesChart( _seriesLineData, defaultRenderer: new charts.LineRendererConfig( includeArea: true, stacked: true), animate: true, animationDuration: Duration(seconds: 1), primaryMeasureAxis: new charts.NumericAxisSpec( tickProviderSpec: new charts.BasicNumericTickProviderSpec(zeroBound: true, desiredTickCount: 5 ), ), behaviors: [ new charts.ChartTitle('Fecha', behaviorPosition: charts.BehaviorPosition.bottom, titleOutsideJustification: charts.OutsideJustification .middleDrawArea), new charts.ChartTitle('Conductividad agua ultra pura', behaviorPosition: charts.BehaviorPosition.start, titleOutsideJustification: charts.OutsideJustification .middleDrawArea), ] ),
Hi, i dont find the way to set the ticks values between 0 and 1 in the domain axis, ¿is there any way to do such thing? It would be wonderful to be able to set values like 0, 0.2, 0.4 0.6 0.8 and 1.0. code:
charts.TimeSeriesChart( _seriesLineData, defaultRenderer: new charts.LineRendererConfig( includeArea: true, stacked: true), animate: true, animationDuration: Duration(seconds: 1), primaryMeasureAxis: new charts.NumericAxisSpec( tickProviderSpec: new charts.BasicNumericTickProviderSpec(zeroBound: true, desiredTickCount: 5 ), ), behaviors: [ new charts.ChartTitle('Fecha', behaviorPosition: charts.BehaviorPosition.bottom, titleOutsideJustification: charts.OutsideJustification .middleDrawArea), new charts.ChartTitle('Conductividad agua ultra pura', behaviorPosition: charts.BehaviorPosition.start, titleOutsideJustification: charts.OutsideJustification .middleDrawArea), ] ),