jqwidgets-framework
Version:
jQWidgets is an advanced Angular, Vue, Blazor, React, Web Components, jquery, ASP .NET MVC, Custom Elements and HTML5 UI framework.
18 lines (17 loc) • 826 B
HTML
<jqxChart #myChart
[width]="getWidth()" [height]="500"
[title]="'Fitness & exercise weekly scorecard'" [description]="'Time spent in vigorous exercise by activity'"
[enableAnimations]="false" [enableAxisTextAnimation]="true" [padding]="padding"
[titlePadding]="titlePadding" [source]="sampleData" [xAxis]="xAxis" [animationDuration]="1000"
[valueAxis]="valueAxis" [seriesGroups]="seriesGroups" [colorScheme]="'scheme01'" [showLegend]="true">
</jqxChart>
<div style="margin-top: 10px">
<div style="float: left">
<jqxCheckBox (onChange)="flipValueAxisOnChange($event)">
Invert value axis
</jqxCheckBox>
<jqxCheckBox style="margin-top: 5px" (onChange)="flipXAxisOnChange($event)">
Invert x-axis
</jqxCheckBox>
</div>
</div>