An error occurred while loading the file. Please try again.
-
Rushikesh Padsala authored27ca663e
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Line Chart with Annotations</title>
<link href="../../assets/styles.css" rel="stylesheet" />
<style>
#chart {
max-width: 650px;
margin: 35px auto;
}
</style>
</head>
<body>
<div id="chart">
</div>
<script src="https://cdn.jsdelivr.net/npm/apexcharts@latest"></script>
<script src="../../assets/stock-prices.js"></script>
<script>
var options = {
annotations: {
yaxis: [{
y: 8200,
borderColor: '#FEB019',
label: {
borderColor: '#333',
style: {
fontSize: '15px',
color: '#333',
background: '#FEB019',
},
text: 'Y-axis annotation',
}
}],
xaxis: [{
x: new Date('23 Nov 2017').getTime(),
borderColor: '#00E396',
label: {
borderColor: '#00E396',
style: {
fontSize: '15px',
color: '#fff',
background: '#00E396',
},
offsetY: -10,
text: 'Vertical',
}
}],
points: [{
x: new Date('01 Dec 2017').getTime(),
y: 9025,
label: {
borderColor: '#FF4560',
offsetY: 0,
style: {
fontSize: '15px',
color: '#fff',
background: '#FF4560',
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
},
text: 'All time high',
}
}]
},
chart: {
width: 350,
height: 220,
type: 'line',
sparkline: {
// enabled: true
}
},
plotOptions: {
bar: {
columnWidth: '50%'
}
},
markers: {
size: 0
},
dataLabels: {
enabled: false
},
stroke: {
curve: 'straight'
},
series: [ {
type: 'bar',
data: series.monthDataSeries2.prices
}, {
type: 'line',
data: series.monthDataSeries1.prices
}],
legend: {
show: false,
},
labels: series.monthDataSeries1.dates,
xaxis: {
type: 'datetime',
labels: {
show: false
}
},
yaxis: {
labels: {
show: false
}
}
}
var chart = new ApexCharts(
document.querySelector("#chart"),
options
);
chart.render();
// adding annotation through chart instance by calling direct method
chart.addYaxisAnnotation({
y: 9000,
borderColor: '#FEB019',
label: {
borderColor: '#333',
style: {
fontSize: '15px',
color: '#333',
background: '#FEB019',
},
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
text: 'Y-axis - runtime',
}
});
chart.addXaxisAnnotation({
x: new Date('25 Nov 2017').getTime(),
borderColor: '#00E396',
label: {
orientation: 'vertical',
borderColor: '#00E396',
style: {
fontSize: '15px',
color: '#fff',
background: '#00E396',
},
offsetY: -10,
text: 'xaxis - runtime',
}
});
chart.addPointAnnotation({
x: new Date('17 Nov 2017').getTime(),
y: 9425,
label: {
borderColor: '#FF4560',
offsetY: 0,
style: {
fontSize: '15px',
color: '#fff',
background: '#FF4560',
},
text: 'Point - runtime',
}
})
</script>
</body>
</html>