google / charts

https://pub.dev/packages/charts_flutter
Apache License 2.0
2.8k stars 1.21k forks source link

Remove axis lines but not the numeric value #673

Open fimDevz opened 3 years ago

fimDevz commented 3 years ago

Capture

fimDevz commented 3 years ago

how to remove the lines in the graph without removing the values on the horizontal and vertical axis?

dinh-nguyen-ominext commented 2 years ago

@fimDevz domainAxis: const charts.OrdinalAxisSpec(showAxisLine: true , renderSpec: charts.SmallTickRendererSpec(lineStyle: charts.LineStyleSpec(color: charts.Color(r: 0, g: 0, b: 0, a: 12))), ), You change charts.color to color white . Hope help You.