HTMLcopy
1
<div id="container"></div>
CSScopy
6
1
html, body, #container {
2
width: 100%;
3
height: 100%;
4
margin: 0;
5
padding: 0;
6
}
JavaScriptcopy
x
1
anychart.onDocumentReady(function() {
2
3
// create a Pareto chart
4
var chart = anychart.pareto([
5
{x: "Defect 1", value: 19},
6
{x: "Defect 2", value: 9},
7
{x: "Defect 3", value: 28},
8
{x: "Defect 4", value: 87},
9
{x: "Defect 5", value: 14},
10
]);
11
12
// get pareto column series and create
13
// fill and stroke
14
var column = chart.getSeriesAt(0);
15
column.fill(function () {
16
if (this.rf < 10) {
17
return '#E24B26'
18
} else {
19
return this.sourceColor;
20
}
21
});
22
column.stroke(function () {
23
if (this.rf < 10) {
24
return anychart.color.darken('#E24B26');
25
} else {
26
return this.sourceColor;
27
}
28
});
29
30
// format column series label to show RF
31
column.labels().enabled(true).format('{%RF}%');
32
33
// set the chart title
34
chart.title("Pareto Chart: Conditional coloring");
35
36
// set the container id
37
chart.container("container");
38
39
// initiate drawing the chart
40
chart.draw();
41
});