# Stacked Linear / Category
const config = { type: 'line', data: data, options: { responsive: true, plugins: { title: { display: true, text: 'Stacked scales', }, }, scales: { y: { type: 'linear', position: 'left', stack: 'demo', stackWeight: 2, grid: { borderColor: Utils.CHART_COLORS.red } }, y2: { type: 'category', labels: ['ON', 'OFF'], offset: true, position: 'left', stack: 'demo', stackWeight: 1, grid: { borderColor: Utils.CHART_COLORS.blue } } } }, };
# Docs
← Log Scale Time Scale →