Hello Kluvin, I am experiencing difficulties while attempting to create a chart using the data option (link data). I have diligently followed the instructions provided in the documentation (Live data - everviz Knowledge Base), but so far, I have not been successful.
I noticed that there are some errors occurring on the Everviz platform. For instance, when creating a chart with Link Data and inspecting the code, I observed that the data is formatted as follows:
data: {
“csvURL”: “https://demo-live-data.highcharts.com/updating-set.csv”
}
However, it seems that the platform is not configuring the “data” object correctly. After conducting tests locally with the code extracted from the Everviz platform and consulting the Highcharts documentation in the Live Data section, I realized that some configurations are missing in the “data” object. The correct configuration would be:
data: {
csvURL: ‘https://demo-live-data.highcharts.com/updating-set.csv’,
dataRefreshRate: { label: ‘10 seconds’, value: ‘10’ },
enablePolling: true,
dateFormat: ‘dd/mm/YYYY’
}
Upon making these corrections, the chart functions as expected in my local environment. However, when I input this code into the Everviz platform and save it, all the configurations I applied are lost.
Could you assist me with this issue?