Hello,
Am using pygooglechart lib to draw compound charts (e.g: Bar + line)
But I have some issues:
- I want to generate line chart on Bar Chart so i added a new data
series (How can hide this series)
chart.add_data([35,75,90,100,60,180]) # For Bar Chart
chart.add_data([47,90,115,134,105,228]) # For Bar Chart
chart.add_data([40,50,75,80,175,60]) # For Line Chart (How to hide
this chart)
chart.add_data_line('0033FF',2,1,1)
- I want to have axis on the right that represent the line chart
(and the left axis is used by Bar chart)
I can add labels to right axis: chart.set_axis_labels(Axis.RIGHT,
right_axis) But how can make line plot the points according the RIGHT
axis not LEFT axis.
Thanks In Advance