%PDF- <> %âãÏÓ endobj 2 0 obj <> endobj 3 0 obj <>/ExtGState<>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI] >>/Annots[ 28 0 R 29 0 R] /MediaBox[ 0 0 595.5 842.25] /Contents 4 0 R/Group<>/Tabs/S>> endobj ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY>endobj 2 0 obj<>endobj 2 0 obj<>endobj 2 0 obj<>endobj 2 0 obj<> endobj 2 0 obj<>endobj 2 0 obj<>es 3 0 R>> endobj 2 0 obj<> ox[ 0.000000 0.000000 609.600000 935.600000]/Fi endobj 3 0 obj<> endobj 7 1 obj<>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI]>>/Subtype/Form>> stream
import { Chart, ScaleOptions } from '../../../src/types.js';
const chart = new Chart('test', {
type: 'bar',
data: {
labels: ['a'],
datasets: [{
data: [1],
}, {
type: 'line',
data: [{ x: 1, y: 1 }]
}]
},
options: {
scales: {
x: {
type: 'time',
time: {
unit: 'year'
},
ticks: {
stepSize: 1
}
},
x1: {
type: 'linear',
// @ts-expect-error 'time' does not exist in 'linear' options
time: {
unit: 'year'
}
},
y: {
ticks: {
callback(tickValue) {
const value = this.getLabelForValue(tickValue as number);
return '$' + value;
}
}
}
}
}
});
function makeChartScale(range: number): ScaleOptions<'linear'> {
return {
type: 'linear',
min: 0,
suggestedMax: range,
};
}
const composedChart = new Chart('test2', {
type: 'bar',
data: {
labels: ['a'],
datasets: [{
data: [1],
}, {
type: 'line',
data: [{ x: 1, y: 1 }]
}]
},
options: {
scales: {
x: makeChartScale(10)
}
}
});