This is my current config:
Code: Select all
{
chart: {
type: "scatter",
width: null,
height: null,
reflow: true,
zooming: {
type: null,
pinchType: null,
},
},
title: {
text: null,
},
xAxis: {
title: {
text: KPI_OPTIONS[xAxisKpi].label,
style: { ...scatterPlotStyles.labels },
margin: 32,
},
lineWidth: 2,
lineColor: theme.palette.grey[800],
gridLineWidth: 0,
tickWidth: 0,
labels: {
enabled: false,
},
zoomEnabled: false,
},
yAxis: {
title: {
text: KPI_OPTIONS[yAxisKpi].label,
style: { ...scatterPlotStyles.labels },
margin: 32,
},
lineWidth: 2,
lineColor: theme.palette.grey[800],
gridLineWidth: 0,
tickWidth: 0,
labels: {
enabled: false,
},
zoomEnabled: false,
},
legend: {
enabled: false,
},
credits: {
enabled: false,
},
tooltip: {
enabled: false,
},
plotOptions: {
series: {
states: {
hover: {
enabled: false,
},
inactive: {
opacity: 1,
},
},
marker: {
states: {
hover: {
enabled: false,
halo: {
size: 0,
},
},
},
},
},
},
series: [...series],
}