devexpress-reporting
Version:
DevExpress Reporting provides the capability to develop a reporting application to create and customize reports.
23 lines (22 loc) • 952 B
JavaScript
/**
* DevExpress HTML/JS Reporting (chart\components\models\_constantLine.js)
* Version: 25.1.3
* Build date: Jun 26, 2025
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
* License: https://www.devexpress.com/Support/EULAs/universal.xml
*/
import { constantLineSerializationsInfo } from '../../internal/meta/_axis';
import { ChartLocalizableElementCollectionItemBase } from '../../internal/_localizableElementCollection';
export class ConstantLineViewModel extends ChartLocalizableElementCollectionItemBase {
static from(model, serializer) {
return new ConstantLineViewModel(model || {}, null, serializer);
}
constructor(model, parent, serializer) {
super(model, parent, serializer, constantLineSerializationsInfo);
this.axisValue = this._axisValue;
}
getExpressionProperties() {
return ['LegendText', 'AxisValue'];
}
}
ConstantLineViewModel.prefix = 'Constant Line ';