← Back
Editing: tooltip_dataset_type.ts
import { Chart } from '../../../index.esm'; const chart = new Chart('id', { type: 'line', data: { labels: [], datasets: [{ data: [] }] }, options: { plugins: { tooltip: { callbacks: { label: (item) => { return `Y Axis ${item.dataset.yAxisID}`; } } } } }, });
Save File
Cancel