![]() 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/ |
<template> <div class="container"> <div class="Chart"> <h1 style="text-align:center;">Barchart</h1> <bar-example/> </div> <div class="Chart"> <h1 style="text-align:center;">Horizontal Barchart</h1> <horizontal-bar-example/> </div> <div class="Chart"> <h1 style="text-align:center;">Barchart with reactive mixing for live data</h1> <reactive-example/> </div> <div class="Chart"> <h1 style="text-align:center;">Barchart with reactive mixing for live data as props</h1> <reactive-prop-example :chart-data="dataPoints"/> </div> <div class="Chart"> <h1 style="text-align:center;">Linechart</h1> <line-example/> </div> <div class="Chart"> <h1 style="text-align:center;">Doughnutchart</h1> <doughnut-example/> </div> <div class="Chart"> <h1 style="text-align:center;">Piechart</h1> <pie-example/> </div> <div class="Chart"> <h1 style="text-align:center;">Radarchart</h1> <radar-example/> </div> <div class="Chart"> <h1 style="text-align:center;">Polararea</h1> <polar-area-example/> </div> <div class="Chart"> <h1 style="text-align:center;">Bubblechart</h1> <bubble-example /> </div> <div class="Chart"> <h1 style="text-align:center;">Scatter Chart</h1> <scatter-example /> </div> <div class="Chart"> <h1 style="text-align:center;">Custom Line Chart</h1> <custom-line /> </div> </div> </template> <script> import BarExample from './BarExample' import LineExample from './LineExample' import DoughnutExample from './DoughnutExample' import PieExample from './PieExample' import RadarExample from './RadarExample' import PolarAreaExample from './PolarAreaExample' import BubbleExample from './BubbleExample' import ReactiveExample from './ReactiveExample' import ReactivePropExample from './ReactivePropExample' import ScatterExample from './ScatterExample' import HorizontalBarExample from './HorizontalBarExample' import CustomLine from './CustomExample' export default { components: { BarExample, LineExample, DoughnutExample, CustomLine, PieExample, RadarExample, PolarAreaExample, BubbleExample, ReactiveExample, ReactivePropExample, ScatterExample, HorizontalBarExample }, data () { return { dataPoints: null, height: 20 } }, mounted () { setInterval(() => { this.fillData() }, 2000) }, methods: { increaseHeight () { this.height += 10 }, getRandomInt () { return Math.floor(Math.random() * (50 - 5 + 1)) + 5 }, fillData () { this.dataPoints = { labels: ['January' + this.getRandomInt(), 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December'], datasets: [ { label: 'Data One', backgroundColor: '#f87979', data: [this.getRandomInt(), this.getRandomInt(), this.getRandomInt(), this.getRandomInt(), this.getRandomInt(), this.getRandomInt(), this.getRandomInt(), this.getRandomInt(), this.getRandomInt(), this.getRandomInt(), this.getRandomInt(), this.getRandomInt()] } ] } } }, computed: { myStyles () { return { height: `${this.height}px`, position: 'relative' } } } } </script> <style> .container { max-width: 800px; margin: 0 auto; } h1 { font-family: 'Helvetica', Arial; color: #464646; text-transform: uppercase; border-bottom: 1px solid #f1f1f1; padding-bottom: 15px; font-size: 28px; margin-top: 0; } .Chart { padding: 20px; box-shadow: 0px 0px 20px 2px rgba(0, 0, 0, .4); border-radius: 20px; margin: 50px 0; } </style>