UNPKG

jqwidgets-framework

Version:

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

32 lines (27 loc) 1.12 kB
<jqxChart #myChart [width]="getWidth()" [height]="500" [title]="'Live updates performance'" [enableAxisTextAnimation]="true" [description]="'Data changes every 100 milliseconds'" [showLegend]="true" [enableAnimations]="false" [padding]="padding" [titlePadding]="titlePadding" [source]="data" [xAxis]="xAxis" [valueAxis]="valueAxis" [seriesGroups]="seriesGroups" [colorScheme]="'scheme01'"> </jqxChart> <table style="width: 680px"> <tbody> <tr> <td style="padding-left: 50px"> <p>Pause / Resume updates:</p> <jqxButton #myBtn (onClick)="btnOnClick($event)" [width]="160"> Pause </jqxButton> </td> <td> <p>Select color scheme:</p> <jqxDropDownList (onChange)="colorsOnChange($event)" [width]="200" [height]="25" [selectedIndex]="0" [dropDownHeight]="100" [source]="colorsSchemesList"> </jqxDropDownList> </td> </tr> </tbody> </table>