Welcome to the Flutter feedback portal. We’re happy you’re here! If you have feedback on how to improve the Flutter, we’d love to hear it!>
Thanks for joining our community and helping improve Syncfusion products!
Option to specify a range for axis when there is no series. If series is loaded dynamically, auto range have to be calculated.
I want to set the visible range for numeric axis if no series are visible. But, it seem that there is no attribute doing this thing.
Therefore, I am here to request an attribute in axis to config about this.
I cannot think a good name for this attribute, because visibleMin &
primaryXAxis: NumericAxis(
vMin: -2,
vMax: 2,
anchorRangeToVisiblePoints: false,
),
Considering the above code, the suggested behaviors are:
If no series are visible, the axis range from vMin to vMax.
If some series are visible, the axis range is calculated base on the visible series (just like the current behaviors) then extend that range to include the range from vMin to vMax.
Thanks.