You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.
First I created a chart with empty series and xaxis categories, after a request I update the series and categories:
EX:
And the data only appear, doesn't showing any animation (like when the chart is created as new).
For now, I solved it adding a
v-if
into theapexchart
component:<apexchart v-if="showChart" type="line" height="100%" :options="chartOptions" :series="chartData" />
And I init it in false, and after I update the values, change it to true:
I don't know if it's an error or if I'm doing something wrong.
The text was updated successfully, but these errors were encountered: