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
Hello there.
I have a combined chart viewf which contains candle chart and line chart. What I need is multiple y values for single x-index. Is there certain way I could achieve this?
Here is the screenshot of the code.
In case of Bar chart, its allowed like this:
-> BarChartDataEntry(x: Double, yValues: [Double])
But for other chart, there is no such option for initialization. How can I achieve like for bar chart?
The text was updated successfully, but these errors were encountered:
For bar chart, yValues are only used for stacked bar chart. For other chart, it is not supported. Consider a simple fact: when you draw a dot (x, y), why do you need another y?
If you really need, then you can subclass a bunch of classes and add the array yourself.
Hello there.
I have a combined chart viewf which contains candle chart and line chart. What I need is multiple y values for single x-index. Is there certain way I could achieve this?
Here is the screenshot of the code.
In case of Bar chart, its allowed like this:
-> BarChartDataEntry(x: Double, yValues: [Double])
But for other chart, there is no such option for initialization. How can I achieve like for bar chart?
The text was updated successfully, but these errors were encountered: