How to remove the additional centre y-axis line?
SwiftUICharts seems to always add x and y axis centre markers regardless of configuration of x or y GridStyle. When my charts have an odd number of grid lines then this falls on a desired gridline so no problem. But when my charts need to have an even number of gridlines due to nice axis scaling, the additional y-axis centre line looks out of place. Any way to stop this line from appearing?
I'm looking for the same, how to remove the auto-added y-axis middle line, it's pretty annoying
The line inside the red box is auto added by the lib, even removing all .axisGrid().. doesn't remove it
@willdale @ataias @xremix
I may have found a solution, but don't know why it works
I had this line .id(data.id) on the modifiers, removing it made the line disappear
Thanks for commenting on this issue, but I dont have a line like that :-(
Where exactly is it?
Still looking for a fix for this.
This .id(data.id)? Was on the modifiers here, just like the .yGrid... methods
I facing this issue too, an additional line in the middle of the Y-axis of my FilledLineChart. removing the .id(data.id) didn't solve my issue.