echart/charts.component.ts
OnChanges
OnInit
OnDestroy
providers |
{
provide: NGX_ECHARTS_CONFIG, useFactory: () => ({ echarts: () => import() })
}
ChartRealtimeService
MeasurementRealtimeService
AlarmRealtimeService
EventRealtimeService
ChartTypesService
EchartsOptionsService
CustomMeasurementService
YAxisService
AlarmSeverityToIconPipe
AlarmSeverityToLabelPipe
|
selector | c8y-charts |
standalone | true |
imports |
CommonModule
CoreModule
NgxEchartsModule
TooltipModule
PopoverModule
ChartAlertsComponent
AlarmsModule
|
templateUrl | ./charts.component.html |
Properties |
Methods |
Inputs |
Outputs |
constructor()
|
alerts |
Type : DynamicComponentAlertAggregator
|
config |
Type : DatapointsGraphWidgetConfig
|
configChangeOnZoomOut |
Type : EventEmitter
|
datapointOutOfSync |
Type : EventEmitter
|
isMarkedAreaEnabled |
Type : EventEmitter
|
timeRangeChangeOnRealtime |
Type : EventEmitter
|
updateAlarmsAndEvents |
Type : EventEmitter
|
debounce | |||||||||
debounce(func: T, wait: number)
|
|||||||||
Type parameters :
|
|||||||||
Parameters :
Returns :
void
|
hasMarkArea | ||||||
hasMarkArea(options: any)
|
||||||
Parameters :
Returns :
boolean
|
isAlarmClick | ||||||
isAlarmClick(params: any)
|
||||||
Parameters :
Returns :
boolean
|
loadMoreData |
loadMoreData()
|
Returns :
void
|
ngOnChanges |
ngOnChanges()
|
Returns :
void
|
ngOnDestroy |
ngOnDestroy()
|
Returns :
void
|
ngOnInit |
ngOnInit()
|
Returns :
void
|
onChartClick | ||||||
onChartClick(params: literal type)
|
||||||
Parameters :
Returns :
void
|
onChartInit | ||||||
onChartInit(ec: ECharts)
|
||||||
Parameters :
Returns :
void
|
saveAsImage |
saveAsImage()
|
Returns :
void
|
alarms |
Type : IAlarm[]
|
Default value : []
|
chart |
Type : ElementRef
|
Decorators :
@ViewChild('chart')
|
chartOption$ |
Type : Observable<EChartsOption>
|
echartsInstance |
Type : ECharts
|
events |
Type : IEvent[]
|
Default value : []
|
showLoadMore |
Default value : false
|
sliderZoomUsed |
Default value : false
|
<div
class="p-relative fit-h chart-container"
>
<div
class="fit-w fit-h"
#chart
echarts
[options]="chartOption$ | async"
(chartInit)="onChartInit($event)"
></div>
<c8y-chart-alerts [alerts]="alerts"></c8y-chart-alerts>
<div *ngIf="showLoadMore" class="chart-load-more">
<button
class="btn btn-primary btn-sm btn-block"
(click)="loadMoreData()"
>
<i c8yIcon="restore"></i>
{{ 'Load more' | translate }}
</button>
</div>
</div>