Hi! It’s me again.
I have a little challenge haha, I Want to put an image into the Dataseries from the right. I can put it into the toolTipContent but I want to put the image in the part to toggleDataSeries.
I have this code
function toggleDataSeries(e) {
if (typeof (e.dataSeries.visible) === "undefined" || e.dataSeries.visible) {
e.dataSeries.visible = false;
}
else {
e.dataSeries.visible = true;
}
chart.render();
}
but I don’t know how can I customize the DataSeries or where can I start to show the image.
Thx!
D.
From Mexico!