Is there a way to specify the stacking order of time series in Highcharts?
相关问题
- How to determine +/- sign when calculating diagona
- Seaborn HeatMap - How to set colour grading throug
- Direction of tick marks in matplotlib
- Issues using highcharts node export server from Cl
- Adjacency list with O(1) look up time using HashSe
相关文章
- Mercurial Commit Charts / Graphs [closed]
- Change color of bars depending on value in Highcha
- Changing Highcharts data series type dynamically
- How can I select 'last business day of the mon
- Sankey diagrams in Python
- Set highcharts y-axis min value to 0, unless there
- Java: Traveling Salesman - Found polynomial algori
- How to get count of values based on datetime in Py
You could assign an index to your series and then do series.update() to update the indexes. See below -
The only way I have found is by ordering the series as they come in. So, if I have series A, B, and C and I want it to be ordered by
B, C, A
then I add the series inB, C, A
order such that series[0] = B, series[1] = C, and series[2] = A. This is definitely a kludge because it would be nice to just sign a stacking index instead of resorting the series import order.