UNPKG

jqwidgets-scripts-custom

Version:

jQWidgets is an advanced jQuery, Angular 7, Vue, React, ASP .NET MVC, Custom Elements and HTML5 UI framework.

103 lines (95 loc) 4.5 kB
<!DOCTYPE html> <html lang="en"> <head> <title id='Description'>Custom Element Chart StepLineSeries</title> <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" /> <meta name="viewport" content="width=device-width, initial-scale=1 maximum-scale=1 minimum-scale=1" /> <meta name="description" content="This is an example of step line series in Custom Element Chart." /> <link rel="stylesheet" href="../../../jqwidgets/styles/jqx.base.css" type="text/css" /> <link rel="stylesheet" href="../../../styles/demos.css" type="text/css" /> <script type="text/javascript" src="../../../scripts/webcomponents-lite.min.js"></script> <script type="text/javascript" src="../../../jqwidgets/jqxcore.js"></script> <script type="text/javascript" src="../../../jqwidgets/jqxcore.elements.js"></script> <script type="text/javascript" src="../../../jqwidgets/jqxdata.js"></script> <script type="text/javascript" src="../../../jqwidgets/jqxdraw.js"></script> <script type="text/javascript" src="../../../jqwidgets/jqxchart.core.js"></script> <script type="text/javascript" src="../../../scripts/demos.js"></script> <script> var source = { datatype: 'csv', datafields: [ { name: 'Date' }, { name: 'Open' }, { name: 'High' }, { name: 'Low' }, { name: 'Close' }, { name: 'Volume' }, { name: 'AdjClose' } ], url: '../../sampledata/TSLA_stockprice.csv' }; var dataAdapter = new jqx.dataAdapter(source); var months = ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec']; JQXElements.settings['chartSettings'] = { title: 'Tesla Motors Stock Price', description: 'Closing price (June 2013 - March 2018)', enableAnimations: true, enableCrosshairs: true, crosshairsDashStyle: '1,1', crosshairsColor: '#0000FF', showLegend: true, padding: { left: 15, top: 5, right: 30, bottom: 5 }, titlePadding: { left: 90, top: 0, right: 0, bottom: 10 }, source: dataAdapter, xAxis: { type: 'date', baseUnit: 'month', minValue: new Date(2013, 5, 1), maxValue: new Date(2018, 2, 1), valuesOnTicks: true, dataField: 'Date', labels: { formatFunction: (value) => { return months[value.getUTCMonth()] + '-' + value.getFullYear(); }, angle: 0, horizontalAlignment: 'right' }, toolTipFormatFunction: (value) => { return value.getDate() + '-' + months[value.getMonth()] + '-' + value.getFullYear(); }, tickMarks: { visilbe: true } }, colorScheme: 'scheme01', seriesGroups: [ { type: 'stepline', valueAxis: { flip: false, title: { text: 'Price per share [USD]<br>' }, labels: { horizontalAlignment: 'right' } }, series: [ { dataField: 'Close', displayText: 'Close Price', lineWidth: 1, symbolSize: 6 } ] } ] } </script> </head> <body> <jqx-chart settings="chartSettings" style="width:850px; height:500px"></jqx-chart> <div class="example-description"> <br /> <h2>Description</h2> <br /> This is an example of Custom element Chart step line series. The chart is loaded from a csv file. You can see how to change the crosshairs dash style and color. The seriesGroups is set to stepline. You can also see how to format the labels setting. </div> </body> </html>