Creé un gráfico dinámico usando el enlace de la biblioteca js de any-chart core https://docs.anychart.com/
el codigo es
var chart = anychart.radar(); // set chart yScale settings chart.yScale() .minimum(0) .maximum(10) .ticks({'interval':2}); chart.yGrid().stroke({ color: "rgba(0, 0, 0, 0.4)", thickness: 1, opacity: 1, }); chart.xGrid().stroke({ color: "rgba(0, 0, 0, 0.4)", thickness: 1, opacity: 1 }); // create first series chart.line(data1); // set chart title chart.title(""); // set container id for the chart chart.container('spider_graph'); // initiate chart drawing chart.draw(); // set data and adjust visualisation var series = chart.line(data1); // enable markers on series series.markers(true);agregará marcador también como
entonces los punteros están conectados con la línea. Quiero cambiar ese color rojo a cualquier otra cosa.
Si no creé el marcador, el color se aplica usando chart.palette(["Yellow"]); pero quiero ambos marcadores con una línea de color diferente.
Se agradece cualquier ayuda.