xxxxxxxxxx
1
<canvas id="bar-chart-custom-options"></canvas>
1
1
xxxxxxxxxx
1
// Bar chart with custom options
2
var bar_ctx = document.getElementById('bar-chart-custom-options').getContext('2d');
3
4
var purple_orange_gradient = bar_ctx.createLinearGradient(0, 0, 0, 600);
5
purple_orange_gradient.addColorStop(0, 'orange');
6
purple_orange_gradient.addColorStop(1, 'purple');
7
8
const dataBarCustomOptions = {
9
type: 'bar',
10
data: {
11
labels: ['January', 'February', 'March', 'April', 'May', 'June', 'July'],
12
datasets: [
13
{
14
label: 'Traffic',
15
data: [30, 15, 62, 65, 61, 6],
16
backgroundColor: purple_orange_gradient,
17
borderColor: [
18
'rgba(255,99,132,1)',
19
'rgba(54, 162, 235, 1)',
20
'rgba(255, 206, 86, 1)',
21
'rgba(75, 192, 192, 1)',
22
'rgba(153, 102, 255, 1)',
23
'rgba(255, 159, 64, 1)',
24
],
25
borderWidth: 1,
26
},
27
],
28
},
29
};
30
31
const optionsBarCustomOptions = {
32
options: {
33
legend: {
34
position: 'top',
35
labels: {
36
fontColor: 'green'
37
}
38
},
39
scales: {
40
xAxes: [
41
{
42
ticks: {
43
fontColor: '#4285F4',
44
},
45
},
46
],
47
yAxes: [
48
{
49
ticks: {
50
fontColor: '#f44242',
51
},
52
},
53
],
54
},
55
},
56
};
57
58
new mdb.Chart(
59
document.getElementById('bar-chart-custom-options'),
60
dataBarCustomOptions,
61
optionsBarCustomOptions
62
);
Console errors: 0