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
// main scale
13
valueScale = chart.getSeries(0).yScale();
14
// percent scale
15
percentScale = chart.getSeries(1).yScale();
16
17
// set ticks interval
18
valueScale.ticks().interval(30);
19
percentScale.ticks().interval(10);
20
21
// value axis
22
valueAxis = chart.yAxis(0);
23
// percent axis
24
percentAxis = chart.yAxis(1);
25
// don't display the last label
26
valueAxis.drawLastLabel(false);
27
// color percent axis
28
percentAxis.stroke("#FF0000");
29
percentAxis.ticks().stroke("#FF0000");
30
percentAxis.labels().fontColor("#FF0000");
31
32
// set the chart title
33
chart.title("Pareto Chart: Axes and Scales");
34
35
// set the container id
36
chart.container("container");
37
38
// initiate drawing the chart
39
chart.draw();
40
});