UNPKG

jqwidgets-framework

Version:

jQWidgets is an advanced Angular, Vue, Blazor, React, Web Components, jquery, ASP .NET MVC, Custom Elements and HTML5 UI framework.

36 lines (29 loc) 1.39 kB
<!DOCTYPE html> <html lang="en"> <head> <title id='Description'>Chart Line Series Typescript Example.</title> <meta name="description" content="Chart with line series example which uses the Chart's typescript definitions'" /> <meta name="keywords" content="jqwidgets charts, jquery charts, javascript charts, ajax charts, graphs, plots, line charts, polar charts, financial charts, bar charts, pie charts, javascript plots, ajax plots" /> <!-- 1. Load references --> <script src="../../../scripts/jquery-1.11.1.min.js"></script> <script src="../../../jqwidgets/jqxcore.js"></script> <script src="../../../jqwidgets/jqxdata.js"></script> <script src="../../../jqwidgets/jqxdraw.js"></script> <script src="../../../jqwidgets/jqxchart.core.js"></script> <script src="typescript-chart.js"></script> <link rel="stylesheet" href="../../../jqwidgets/styles/jqx.base.css" type="text/css" /> <!-- 2. Create initialization --> <script> $(document).ready(function () { createChart('#chartContainer'); }); </script> </head> <!-- 3. Display the application --> <body> <div class="example-description"> Chart Line Series Typescript Example. </div> <div id="chartContainer" style="width: 850px; height: 500px"></div> </body> </html>