This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Dataset 1 | Dataset 2 | Dataset 3 | ||
---|---|---|---|---|
January | 100 | 200 | 300 | |
February | 120 | 240 | 210 | |
March | 220 | 340 | 310 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Dataset 1 | Dataset 2 | Dataset 3 | |
---|---|---|---|
100 | 200 | 300 | |
120 | 240 | 210 | |
320 | 140 | 310 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
["Dataset 1", "Dataset 2", "Dataset 3"], | |
[100,200,300], | |
[120,170,320] | |
] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
[100,200,300], | |
[120,170,320] | |
] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
[100,200,300], | |
[120,170,320] | |
] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
"field": "value 2", | |
"display": "Value 2" | |
}, | |
{ | |
"field": "value 1" | |
} | |
] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
["test", "dynamic"], | |
[1,2], | |
[3,4], | |
[5,6] | |
] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
"name": "Round 1", | |
"values": [ | |
{ | |
"id": 1, | |
"label": "Test 1", | |
"value": 0, | |
"color": "red" | |
}, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React, { Component } from 'react'; | |
import { LiveBarChart } from 'react-dynamic-charts'; | |
import 'react-dynamic-charts/dist/index.css'; // Don't forget to import the styles | |
class App extends Component { | |
state = { | |
data: [ | |
// ... | |
] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template> | |
<div class="modal" v-bind:class="customClass" v-bind:style="{ display: show ? 'block' : 'none' }"> | |
<div class="overlay" @click="closeCallback()"></div> | |
<div class="modal_content"> | |
<slot></slot> | |
<button title="Close" class="close_modal" @click="closeCallback()"> | |
<i class="fas fa-times"></i> | |
</button> | |
</div> | |
</div> |
NewerOlder