In our project we have a Line chart with a legend. Both the chart and its legend are initialized in separate containers (in case this fact matters).
<div ref="chartdiv" />
<div ref="legenddiv" />
We create them both using a createFromConfig method.
What I am trying to achieve: we have a multiple tabs on the page, users usually toggle legend items to show/hide some series. I need to store these toggled legend items so when users go back to the tab with the chart I'll be able to toggle them back programmatically.
From my understanding an algorithm to this is as follows:
- Store toggled items somewhere
- When chart is initiated toggle previously toggled items. As far as I know that should be done via showing/hiding series, not legend items.
So far I've managed to store labels by adding a click handler to legend items.
chart.value.legend.itemContainers.template.events.on('hit', (ev) => {
toggledItems.push(ev.target.dataItem.name)
})
But I have no success with hiding previously toggled legend items. I tried to implement something according to this question on stack overflow , I tried to use 'inited', 'hidden', 'shown' events, but there was no reaction to them.
// Nothing happens here ☹️
chart.value.series.template.events.on('hidden', () => {
console.log('I am hidden')
})
Please, point me in the right direction.
Found a solution. Hope that would help someone. We have a
Line
chart component in the project. I added atoggleSeries
prop - a v-model for toggled legend/series items, it stores strings (names). So when we click on a legend item, we put that legend item's name and update thetoggleSeries
v-model. There is a two-way binding, we can init a chart having already items intoggleSeries
array or we can put items from outside of theLine
component on-the-go - the chart would be updated.