| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596 |
- <!DOCTYPE HTML>
- <html>
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
- <meta name="viewport" content="width=device-width, initial-scale=1">
- <title>Highstock Example</title>
- <style type="text/css">
- </style>
- </head>
- <body>
- <script src="../../code/highstock.js"></script>
- <script src="../../code/modules/data.js"></script>
- <script src="../../code/modules/exporting.js"></script>
- <div id="container" style="height: 400px; min-width: 310px"></div>
- <script type="text/javascript">
- Highcharts.getJSON('https://cdn.jsdelivr.net/gh/highcharts/highcharts@v7.0.0/samples/data/usdeur.json', function (data) {
- var lastDate = data[data.length - 1][0], // Get year of last data point
- days = 24 * 36e5; // Milliseconds in a day
- // Create the chart
- Highcharts.stockChart('container', {
- rangeSelector: {
- selected: 1
- },
- title: {
- text: 'USD to EUR exchange rate'
- },
- yAxis: [{
- title: {
- text: 'Exchange rate'
- },
- top: '15%',
- height: '85%'
- }, {
- height: '15%'
- }],
- series: [{
- name: 'USD to EUR',
- data: data,
- id: 'dataseries',
- tooltip: {
- valueDecimals: 4
- }
- }, {
- type: 'flags',
- name: 'Flags on series',
- data: [{
- x: lastDate - 60 * days,
- title: 'On series'
- }, {
- x: lastDate - 30 * days,
- title: 'On series'
- }],
- onSeries: 'dataseries',
- shape: 'squarepin'
- }, {
- type: 'flags',
- name: 'Flags on axis',
- data: [{
- x: lastDate - 45 * days,
- title: 'On axis'
- }, {
- x: lastDate - 15 * days,
- title: 'On axis'
- }],
- shape: 'squarepin'
- }, {
- type: 'flags',
- name: 'Flags in pane',
- data: [{
- x: lastDate - 40 * days,
- title: 'In pane'
- }, {
- x: lastDate - 15 * days,
- title: 'In pane'
- }],
- yAxis: 1,
- shape: 'squarepin'
- }]
- });
- });
- </script>
- </body>
- </html>
|