jqwidgets-scripts-custom
Version:
jQWidgets is an advanced jQuery, Angular 7, Vue, React, ASP .NET MVC, Custom Elements and HTML5 UI framework.
18 lines (15 loc) • 376 B
text/typescript
import { Component } from '@angular/core';
({
selector: 'app-root',
templateUrl: './app.component.html'
})
export class AppComponent {
values: number[] = [12, -35, -14.78, 29.5, 23.124, 41];
labels: any = {
formatFunction: (value: string) => {
return value + ' m';
},
precision: 1,
indent: 15
}
}