brush-charts.html 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8" />
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  6. <meta http-equiv="X-UA-Compatible" content="ie=edge" />
  7. <title>Brush charts</title>
  8. <link href="../../assets/styles.css" rel="stylesheet" />
  9. <style>
  10. #wrapper {
  11. padding-top: 20px;
  12. padding-left: 10px;
  13. background: #fff;
  14. border: 1px solid #ddd;
  15. box-shadow: 0 22px 35px -16px rgba(0, 0, 0, 0.1);
  16. max-width: 650px;
  17. margin: 35px auto;
  18. }
  19. #chart-line {
  20. position: relative;
  21. margin-top: -40px;
  22. }
  23. </style>
  24. <script>
  25. window.Promise ||
  26. document.write(
  27. '<script src="https://cdn.jsdelivr.net/npm/promise-polyfill@8/dist/polyfill.min.js"><\/script>'
  28. )
  29. window.Promise ||
  30. document.write(
  31. '<script src="https://cdn.jsdelivr.net/npm/eligrey-classlist-js-polyfill@1.2.20171210/classList.min.js"><\/script>'
  32. )
  33. window.Promise ||
  34. document.write(
  35. '<script src="https://cdn.jsdelivr.net/npm/findindex_polyfill_mdn"><\/script>'
  36. )
  37. </script>
  38. <script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.min.js"></script>
  39. <script src="https://cdn.jsdelivr.net/npm/apexcharts"></script>
  40. <script src="https://cdn.jsdelivr.net/npm/vue-apexcharts"></script>
  41. <script>
  42. /*
  43. // this function will generate output in this format
  44. // data = [
  45. [timestamp, 23],
  46. [timestamp, 33],
  47. [timestamp, 12]
  48. ...
  49. ]
  50. */
  51. function generateDayWiseTimeSeries(baseval, count, yrange) {
  52. var i = 0;
  53. var series = [];
  54. while (i < count) {
  55. var x = baseval;
  56. var y = Math.floor(Math.random() * (yrange.max - yrange.min + 1)) + yrange.min;
  57. series.push([x, y]);
  58. baseval += 86400000;
  59. i++;
  60. }
  61. return series;
  62. }
  63. var data = generateDayWiseTimeSeries(new Date('11 Feb 2017').getTime(), 185, {
  64. min: 30,
  65. max: 90
  66. })
  67. </script>
  68. </head>
  69. <body>
  70. <div id="app">
  71. <div id="wrapper">
  72. <div id="chart-line2">
  73. <apexchart type="line" height="230" :options="chartOptions" :series="series"></apexchart>
  74. </div>
  75. <div id="chart-line">
  76. <apexchart type="area" height="130" :options="chartOptionsLine" :series="seriesLine"></apexchart>
  77. </div>
  78. </div>
  79. </div>
  80. <!-- Below element is just for displaying source code. it is not required. DO NOT USE -->
  81. <div id="html">
  82. &lt;div id=&quot;wrapper&quot;&gt;
  83. &lt;div id=&quot;chart-line2&quot;&gt;
  84. &lt;apexchart type=&quot;line&quot; height=&quot;230&quot; :options=&quot;chartOptions&quot; :series=&quot;series&quot;&gt;&lt;/apexchart&gt;
  85. &lt;/div&gt;
  86. &lt;div id=&quot;chart-line&quot;&gt;
  87. &lt;apexchart type=&quot;area&quot; height=&quot;130&quot; :options=&quot;chartOptionsLine&quot; :series=&quot;seriesLine&quot;&gt;&lt;/apexchart&gt;
  88. &lt;/div&gt;
  89. &lt;/div&gt;
  90. </div>
  91. <script>
  92. new Vue({
  93. el: '#app',
  94. components: {
  95. apexchart: VueApexCharts,
  96. },
  97. data: {
  98. series: [{
  99. data: data
  100. }],
  101. chartOptions: {
  102. chart: {
  103. id: 'chart2',
  104. type: 'line',
  105. height: 230,
  106. toolbar: {
  107. autoSelected: 'pan',
  108. show: false
  109. }
  110. },
  111. colors: ['#546E7A'],
  112. stroke: {
  113. width: 3
  114. },
  115. dataLabels: {
  116. enabled: false
  117. },
  118. fill: {
  119. opacity: 1,
  120. },
  121. markers: {
  122. size: 0
  123. },
  124. xaxis: {
  125. type: 'datetime'
  126. }
  127. },
  128. seriesLine: [{
  129. data: data
  130. }],
  131. chartOptionsLine: {
  132. chart: {
  133. id: 'chart1',
  134. height: 130,
  135. type: 'area',
  136. brush:{
  137. target: 'chart2',
  138. enabled: true
  139. },
  140. selection: {
  141. enabled: true,
  142. xaxis: {
  143. min: new Date('19 Jun 2017').getTime(),
  144. max: new Date('14 Aug 2017').getTime()
  145. }
  146. },
  147. },
  148. colors: ['#008FFB'],
  149. fill: {
  150. type: 'gradient',
  151. gradient: {
  152. opacityFrom: 0.91,
  153. opacityTo: 0.1,
  154. }
  155. },
  156. xaxis: {
  157. type: 'datetime',
  158. tooltip: {
  159. enabled: false
  160. }
  161. },
  162. yaxis: {
  163. tickAmount: 2
  164. }
  165. },
  166. },
  167. })
  168. </script>
  169. </body>
  170. </html>