jqwidgets-framework
Version:
jQWidgets is an advanced Angular, Vue, Blazor, React, Web Components, jquery, ASP .NET MVC, Custom Elements and HTML5 UI framework.
34 lines (26 loc) • 697 B
text/typescript
import { Component, OnInit } from '@angular/core';
({
selector: 'app-left-bar-gauge',
templateUrl: './left-bar-gauge.component.html',
styleUrls: ['./left-bar-gauge.component.css']
})
export class LeftBarGaugeComponent implements OnInit {
constructor() { }
ngOnInit() {
}
labels: jqwidgets.BarGaugeLabels =
{
indent: 0.1,
visible: false
};
customColorScheme: jqwidgets.BarGaugeCustomColorScheme =
{
name: 'customColors',
colors: ['#6BBD49']
};
values: number[] = [25];
tooltip: jqwidgets.BarGaugeTooltip =
{
visible: false
};
}