UNPKG

jqwidgets-framework

Version:

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

38 lines (32 loc) 1.57 kB
<!DOCTYPE html> <html> <head> <meta name="keywords" content="jQuery Gauge, Gauge, Linear Gauge, Vertical Gauge, Horizontal Gauge" /> <title id='Description'>This sample demonstrates the basic Linear Gauge settings. TypeScript example.</title> <meta name="description" content="Linear Gauge typescript example" /> <!-- 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/jqxgauge.js"></script> <script src="typescript-lineargauge.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 () { createLinearGauge('#linearGauge'); }); </script> </head> <!-- 3. Display the application --> <body style="background: white;"> <div class="example-description"> This sample demonstrates the basic Linear Gauge settings. TypeScript example. </div> <div id="demoWidget" style="position: relative;"> <div style="margin-left: 60px; float: left;" id="linearGauge"></div> </div> </body> </html>