With a data.mouseover defined like so the initial console log correctly gives the initial lineThickness value and then subsequent mouseovers give the value I set but lineThickness is not altered in chart.
Would I have to re-render to see it?
data: [
{
type: "line",
mouseover: function(e){
console.log(e.chart.axisX[0].lineThickness);
e.chart.axisX[0].lineThickness = 5;
return;
},