Is it possible to set the x values ​​used in OpenPyxl?

enter image description here

I am trying to do the following in openypxl. I want to use delay times as values ​​for xaxis. I can get the correct series added to the chart, but I'm having latency issues. The graph represents my desired output. Is it possible?

chart_object= charts.LineChart()
x_axis= charts.Reference(overall_stats_sheet, (11,2), (11, 5))
chart_object.set_categories(x_axis)

      

Continuing this discussion here: https://groups.google.com/forum/#!topic/openpyxl-users/PGL9-9K-Xok

+3


source to share





All Articles