| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- module.exports = {
- config: {
- type: 'line',
- data: {
- labels: [0, 1, 2, 3, 4, 5],
- datasets: [
- {
- // option in dataset
- data: [0, 5, 10, null, -10, -5],
- pointBorderColor: '#00ff00',
- pointBorderWidth: [
- 1, 2, 3, 4, 5, 6
- ]
- },
- {
- // option in element (fallback)
- data: [4, -5, -10, null, 10, 5],
- }
- ]
- },
- options: {
- legend: false,
- title: false,
- elements: {
- line: {
- fill: false,
- },
- point: {
- borderColor: '#ff0000',
- borderWidth: [
- 6, 5, 4, 3, 2, 1
- ],
- radius: 10
- }
- },
- scales: {
- xAxes: [{display: false}],
- yAxes: [{display: false}]
- }
- }
- },
- options: {
- canvas: {
- height: 256,
- width: 512
- }
- }
- };
|