UNPKG

devexpress-reporting

Version:

DevExpress Reporting provides the capability to develop a reporting application to create and customize reports.

19 lines (18 loc) 781 B
/** * DevExpress HTML/JS Reporting (chart\components\models\_scaleBreak.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 { scaleBreakSerializationsInfo } from '../../internal/meta/_axis'; import { ChartElementCollectionItemBase } from '../../internal/_elementCollection'; export class ScaleBreakViewModel extends ChartElementCollectionItemBase { static from(model, serializer) { return new ScaleBreakViewModel(model || {}, null, serializer); } constructor(model, parent, serializer) { super(model, parent, serializer, scaleBreakSerializationsInfo); } } ScaleBreakViewModel.prefix = 'Scale Break ';