12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- <!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 missing data</title>
- <link href="../../assets/styles.css" rel="stylesheet" />
- <style>
-
- #chart {
- max-width: 650px;
- margin: 35px auto;
- }
-
- </style>
- <script>
- window.Promise ||
- document.write(
- '<script src="https://cdn.jsdelivr.net/npm/promise-polyfill@8/dist/polyfill.min.js"><\/script>'
- )
- window.Promise ||
- document.write(
- '<script src="https://cdn.jsdelivr.net/npm/eligrey-classlist-js-polyfill@1.2.20171210/classList.min.js"><\/script>'
- )
- window.Promise ||
- document.write(
- '<script src="https://cdn.jsdelivr.net/npm/findindex_polyfill_mdn"><\/script>'
- )
- </script>
-
- <script src="https://cdn.jsdelivr.net/npm/apexcharts"></script>
-
-
- </head>
- <body>
- <div id="chart"></div>
- <script>
-
- var options = {
- series: [{
- name: 'Peter',
- data: [5, 5, 10, 8, 7, 5, 4, null, null, null, 10, 10, 7, 8, 6, 9]
- }, {
- name: 'Johnny',
- data: [10, 15, null, 12, null, 10, 12, 15, null, null, 12, null, 14, null, null, null]
- }, {
- name: 'David',
- data: [null, null, null, null, 3, 4, 1, 3, 4, 6, 7, 9, 5, null, null, null]
- }],
- chart: {
- height: 350,
- type: 'line',
- zoom: {
- enabled: false
- },
- animations: {
- enabled: false
- }
- },
- stroke: {
- width: [5,5,4],
- curve: 'straight'
- },
- labels: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16],
- title: {
- text: 'Missing data (null values)'
- },
- xaxis: {
- },
- };
- var chart = new ApexCharts(document.querySelector("#chart"), options);
- chart.render();
-
-
- </script>
-
- </body>
- </html>
|