LinearGaugeComponent
Represents the Kendo UI LinearGauge component for Angular.
import { Component } from '@angular/core';
@Component({
selector: 'my-app',
template: `
<kendo-lineargauge [pointer]="{ value: value }">
</kendo-lineargauge>
`
})
class AppComponent {
public value: number = 10;
}
Selector
kendo-lineargauge
Export Name
Accessible in templates as #kendoLinearGaugeInstance="kendoLinearGauge"
Inputs
Name | Type | Default | Description |
---|---|---|---|
gaugeArea |
|
Specifies options for the Gauge area. | |
pointer |
|
The configuration of the pointers. | |
renderAs |
|
Specifies the output type. | |
resizeRateLimit |
|
The maximum number of times the Gauge resizes per second.
Defaults to | |
scale |
|
The configuration of the scale. | |
transitions |
|
Specifies if the changes will be animated. |
Methods
exportImage | ||||||
---|---|---|---|---|---|---|
Exports the Gauge as an image. The export operation is asynchronous and returns a promise. | ||||||
| ||||||
|
exportSVG | ||||||
---|---|---|---|---|---|---|
Exports the Gauge as an SVG document. The export operation is asynchronous and returns a promise. | ||||||
| ||||||
|
exportVisual | ||||
---|---|---|---|---|
Exports the Gauge as a Drawing | ||||
|
resize |
---|
Detects the size of the container and redraws the Gauge.
Resizing is automatic unless you set the |