![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/ts.corals.io/frontend/node_modules/vue-chartjs/src/examples/ |
import { Scatter } from '../BaseCharts' export default { extends: Scatter, mounted () { this.renderChart({ datasets: [{ label: 'Scatter Dataset 1', fill: false, borderColor: '#f87979', backgroundColor: '#f87979', data: [{ x: -2, y: 4 }, { x: -1, y: 1 }, { x: 0, y: 0 }, { x: 1, y: 1 }, { x: 2, y: 4 }] }, { label: 'Scatter Dataset 2', fill: false, borderColor: '#7acbf9', backgroundColor: '#7acbf9', data: [{ x: -2, y: -4 }, { x: -1, y: -1 }, { x: 0, y: 1 }, { x: 1, y: -1 }, { x: 2, y: -4 }] }] }, {responsive: true, maintainAspectRatio: false}) } }