mirror of
https://github.com/status-im/nimbus-gui.git
synced 2025-02-08 09:34:40 +00:00
Make data easy to filter in future
This commit is contained in:
parent
c8a4fd075e
commit
232612ae15
@ -10,7 +10,6 @@ import {
|
|||||||
Legend,
|
Legend,
|
||||||
} from 'chart.js';
|
} from 'chart.js';
|
||||||
import { Line } from 'react-chartjs-2';
|
import { Line } from 'react-chartjs-2';
|
||||||
import faker from 'faker';
|
|
||||||
|
|
||||||
ChartJS.register(
|
ChartJS.register(
|
||||||
CategoryScale,
|
CategoryScale,
|
||||||
@ -22,7 +21,9 @@ ChartJS.register(
|
|||||||
Filler,
|
Filler,
|
||||||
Legend
|
Legend
|
||||||
);
|
);
|
||||||
|
|
||||||
const exampleData = [
|
const exampleData = [
|
||||||
|
|
||||||
{
|
{
|
||||||
id: 1,
|
id: 1,
|
||||||
year: 2016,
|
year: 2016,
|
||||||
@ -53,23 +54,25 @@ const exampleData = [
|
|||||||
userGain: 4300,
|
userGain: 4300,
|
||||||
userLost: 234
|
userLost: 234
|
||||||
}
|
}
|
||||||
|
|
||||||
];
|
];
|
||||||
const labelsEx = ['January', 'February', 'March', 'April', 'May', 'June', 'July'];
|
const years = exampleData.map(item => item.year.toString());
|
||||||
|
const userGains = exampleData.map(item => item.userGain);
|
||||||
|
|
||||||
const data = {
|
const data = {
|
||||||
labels: labelsEx,
|
labels: years,
|
||||||
datasets: [
|
datasets: [
|
||||||
{
|
{
|
||||||
label: 'Dataset',
|
label: 'User Gain',
|
||||||
data: exampleData,
|
data: userGains,
|
||||||
borderColor: 'light-red',
|
borderColor: 'red',
|
||||||
backgroundColor: 'light-red',
|
backgroundColor: 'red',
|
||||||
fill: true,
|
fill: true,
|
||||||
start: true,
|
|
||||||
origin: true
|
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
};
|
};
|
||||||
|
|
||||||
const config = {
|
const config = {
|
||||||
type: 'line',
|
type: 'line',
|
||||||
data: data,
|
data: data,
|
||||||
@ -88,6 +91,7 @@ const config = {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
const options = {
|
const options = {
|
||||||
responsive: true,
|
responsive: true,
|
||||||
plugins: {
|
plugins: {
|
||||||
@ -96,13 +100,13 @@ const options = {
|
|||||||
},
|
},
|
||||||
title: {
|
title: {
|
||||||
display: true,
|
display: true,
|
||||||
text: 'Chart.js Line Chart',
|
text: 'User Gain Over Years',
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
const LineChart = () => {
|
const LineChart = () => {
|
||||||
|
|
||||||
return <Line options={options} data={data} />;
|
return <Line options={options} data={data} />;
|
||||||
|
|
||||||
}
|
}
|
||||||
export default LineChart;
|
|
||||||
|
export default LineChart;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user