jqwidgets-framework
Version:
jQWidgets is an advanced Angular, Vue, Blazor, React, Web Components, jquery, ASP .NET MVC, Custom Elements and HTML5 UI framework.
16 lines (15 loc) • 529 B
HTML
<div class="container">
<div id="heatmap">
<jqxHeatMap #myHeatMap [xAxis]="xAxis" [yAxis]="yAxis" [source]="data"
[title]="'Car sales revenue per employee(in 1000 €)'">
</jqxHeatMap>
</div>
<div id="options">
<jqxCheckBox #myCheckBoxXAxis (onChange)="changeXAxisOrigin($event)" [checked]="true">
Reverse X-Axis Origin
</jqxCheckBox>
<jqxCheckBox #myCheckBoxYAxis (onChange)="changeYAxisOrigin($event)" [checked]="true">
Reverse Y-Axis Origin
</jqxCheckBox>
</div>
</div>