sgratzl / chartjs-chart-pcp

Chart.js Parallel Coordinates Plot
https://www.sgratzl.com/chartjs-chart-pcp/
MIT License
19 stars 2 forks source link

How do you set min/max values on the linearAxis/is there a way to customise each y axis scale? #50

Open Jennachilla opened 8 months ago

Jennachilla commented 8 months ago

How do you set min/max values on the linearAxis and is there a way to customise each of the y axis scales (for example y axis 1 round ticks to 3dp, y axis 5 round ticks to whole numbers)?

I tried this but nothing seems to change with the scales when I add min/max values elements: { linearAxis: { axisWidth: 10, border: { color: "grey" }, grid: { display: false }, ticks: { color: "grey", includeBounds: true, }, offset: true, min: 0, max: 1 }, },