mirror of
https://github.com/chartjs/Chart.js.git
synced 2025-12-08 20:36:08 +00:00
* fix-#10755 * none to false * str to bool * str to bool * 10/10 * fix test Co-authored-by: puneetkathar1 <puneetkathar1@gmail.com> Co-authored-by: Puneet Kathar <73285338+puneetkathar1@users.noreply.github.com>
60 lines
1.1 KiB
JavaScript
60 lines
1.1 KiB
JavaScript
module.exports = {
|
|
config: {
|
|
type: 'line',
|
|
data: {
|
|
labels: [0, 1, 2, 3, 4, 5, 6],
|
|
datasets: [
|
|
{
|
|
// option in dataset
|
|
data: [0, 5, 10, null, -10, -5, 0],
|
|
pointBackgroundColor: '#ff0000',
|
|
pointBorderColor: '#ff0000',
|
|
pointStyle: [
|
|
'circle',
|
|
'cross',
|
|
'crossRot',
|
|
'dash',
|
|
'line',
|
|
'rect',
|
|
false
|
|
]
|
|
},
|
|
{
|
|
// option in element (fallback)
|
|
data: [4, -5, -10, null, 10, 5, -4],
|
|
}
|
|
]
|
|
},
|
|
options: {
|
|
elements: {
|
|
line: {
|
|
fill: false,
|
|
},
|
|
point: {
|
|
backgroundColor: '#00ff00',
|
|
borderColor: '#00ff00',
|
|
pointStyle: [
|
|
'line',
|
|
'rect',
|
|
'rectRounded',
|
|
'rectRot',
|
|
'star',
|
|
'triangle'
|
|
],
|
|
radius: 10
|
|
}
|
|
},
|
|
scales: {
|
|
x: {display: false},
|
|
y: {display: false}
|
|
}
|
|
}
|
|
},
|
|
options: {
|
|
canvas: {
|
|
height: 256,
|
|
width: 512
|
|
}
|
|
}
|
|
};
|