I have created a bar chart with single series item. xField of my series is "MEASURE" and yField is "ITEM_DESC".
Now my dataSource to the chart has got two data items:
- item[0]: MEASURE = 100 and ITEM_DESC = MyItem
- item[1]: MEASURE = 200 and ITEM_DESC = MyItem
When this bar chart is plotted, I see two nodes at Y Axis but graph is rendered on top of each other. So effectively I see two Y Axis nodes but only one bar with two data points. I understand bar chart is finding it difficult to differentiate between two same Y Axis items but is there a way I can plot two different bars in this situation?
All suggestions are welcome!