# 散点图 - 多轴
¥Scatter - Multi axis
const config = { type: 'scatter', data: data, options: { responsive: true, plugins: { legend: { position: 'top', }, title: { display: true, text: 'Chart.js Scatter Multi Axis Chart' } }, scales: { y: { type: 'linear', // only linear but allow scale type registration. This allows extensions to exist solely for log scale for instance position: 'left', ticks: { color: Utils.CHART_COLORS.red } }, y2: { type: 'linear', // only linear but allow scale type registration. This allows extensions to exist solely for log scale for instance position: 'right', reverse: true, ticks: { color: Utils.CHART_COLORS.blue }, grid: { drawOnChartArea: false // only want the grid lines for one axis to show up } } } }, };
# 文档
¥Docs