You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am having an issue, I created a barchartview graph and I would like to limit the number of visible bars to 10 (which is the minimum in setVisibleXRange) and scroll after that. The problem is that my x-axis is made of strings (basically dates and time) therefore it doesn't take in count when I use barChartView.setVisibleXRange(minXRange: 10.0, maxXRange: 10.0).
Do you guys have any idea of how I could manage to do that?
The text was updated successfully, but these errors were encountered:
/// Limits the maximum and minimum value count that can be visible by pinching and zooming.////// e.g. minRange=10, maxRange=100 no less than 10 values and no more that 100 values can be viewed/// at once without scrolling.////// If you call this method, chart must have data or it has no effect.openfunc setVisibleXRange(minXRange:Double, maxXRange:Double)
/// If you call this method, chart must have data or it has no effect.
Hi there,
I am having an issue, I created a barchartview graph and I would like to limit the number of visible bars to 10 (which is the minimum in setVisibleXRange) and scroll after that. The problem is that my x-axis is made of strings (basically dates and time) therefore it doesn't take in count when I use barChartView.setVisibleXRange(minXRange: 10.0, maxXRange: 10.0).
Do you guys have any idea of how I could manage to do that?
The text was updated successfully, but these errors were encountered: