jqwidgets-framework
Version:
jQWidgets is an advanced Angular, Vue, Blazor, React, Web Components, jquery, ASP .NET MVC, Custom Elements and HTML5 UI framework.
39 lines (30 loc) • 1.47 kB
HTML
<html lang="en">
<head>
<title id='Description'>Chart Column Series Typescript Example.</title>
<meta name="description" content="Chart with Column series typescript example. This example demonstrates how to build a graph with columns." />
<meta name="keywords" content="jqwidgets charts, jquery charts, javascript charts, ajax charts, graphs, plots, line 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-columnlocaldata.js"></script>
<link rel="stylesheet" href="../../../jqwidgets/styles/jqx.base.css" type="text/css" />
<script type="text/javascript" src="../../../scripts/demos.js"></script>
<!-- 2. Create initialization -->
<script>
$(document).ready(function () {
createChartColumnSeries('#container');
});
</script>
</head>
<!-- 3. Display the application -->
<body>
<div class="example-description">
Chart Column Series Typescript Example.
</div>
<div id="container" style="width: 800px; height: 500px;"></div>
</body>
</html>