We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Version 1.0.17+1
displayDataPointWhenNoValue is ignored and a dot is shown at y axis value 0. (For May 13th in the example.)
Example code:
List<DataPoint<DateTime>> dataPoints = [ DataPoint<DateTime>(value: 231.0, xAxis: DateTime(2020, 5, 12, 9, 51, 27)), DataPoint<DateTime>(value: 231.0, xAxis: DateTime(2020, 5, 14, 10, 59, 35)), DataPoint<DateTime>(value: 231.0, xAxis: DateTime(2020, 5, 15, 8, 59, 0)), ]; return BezierChart( fromDate: dataPoints.first.xAxis, bezierChartScale: BezierChartScale.WEEKLY, toDate: dataPoints.last.xAxis, series: [ BezierLine( label: "Num posts", data: dataPoints, ), ], config: BezierChartConfig( verticalIndicatorStrokeWidth: 3.0, verticalIndicatorColor: Colors.white, showVerticalIndicator: true, verticalIndicatorFixedPosition: false, verticalLineFullHeight: true, displayYAxis: true, displayDataPointWhenNoValue: false, backgroundColor: Colors.lightBlueAccent, footerHeight: 50.0, ), );
The text was updated successfully, but these errors were encountered:
Feel free to open a PR
Sorry, something went wrong.
Also it does not work for BezierChartScale.HOURLY @diegoveloper Can you help us with that?
No branches or pull requests
Version 1.0.17+1
displayDataPointWhenNoValue is ignored and a dot is shown at y axis value 0. (For May 13th in the example.)
Example code:
The text was updated successfully, but these errors were encountered: