Hi there,
In CanvasJS, is it possible to load a data series from an external file? For example, i have a file named data.txt with the content:
{ x: 10, y: 71 },
{ x: 22, y: 55},
{ x: 31, y: 50 },
{ x: 44, y: 65 },
{ x: 50, y: 95 },
{ x: 64, y: 68 },
{ x: 72, y: 28 },
{ x: 84, y: 34 },
{ x: 90, y: 14}
How can i assign this content to a CanvasJS variable and plot it, if possible?
Thanks in advance. Best regards.