UNPKG

devexpress-reporting

Version:

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

19 lines (18 loc) 845 B
/** * DevExpress HTML/JS Reporting (chart\components\models\_additionalLegend.js) * Version: 24.2.6 * Build date: Mar 18, 2025 * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED * License: https://www.devexpress.com/Support/EULAs/universal.xml */ import { additionalLegendSerializationsInfo } from '../../internal/meta/_chart'; import { ChartLocalizableElementCollectionItemBase } from '../../internal/_localizableElementCollection'; export class AdditionalLegendViewModel extends ChartLocalizableElementCollectionItemBase { static from(model, serializer) { return new AdditionalLegendViewModel(model || {}, null, serializer); } constructor(model, parent, serializer) { super(model, parent, serializer, additionalLegendSerializationsInfo); } } AdditionalLegendViewModel.prefix = 'Legend';