UNPKG

devexpress-reporting

Version:

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

21 lines (20 loc) 1.13 kB
/** * DevExpress HTML/JS Reporting (chart\components\axis\_axisXYViewModel.d.ts) * Version: 20.2.13 * Build date: Apr 10, 2023 * Copyright (c) 2012 - 2023 Developer Express Inc. ALL RIGHTS RESERVED * License: https://www.devexpress.com/Support/EULAs/universal.xml */ import { ConstantLineViewModel } from '../models/_constantLine'; import { ScaleBreakViewModel } from '../models/_scaleBreak'; import { StripViewModel } from '../models/_strip'; import { ISerializationInfoArray, IModelSerializer } from '@devexpress/analytics-core/analytics-utils'; import { SerializableModel } from '@devexpress/analytics-core/analytics-elements'; export declare class AxisXYViewModel extends SerializableModel { static from(info?: ISerializationInfoArray): (model: any, serializer: any) => AxisXYViewModel; static toJson(value: any, serializer: any, refs: any): any; constructor(model: any, serializer?: IModelSerializer, info?: ISerializationInfoArray); constantLines: ko.ObservableArray<ConstantLineViewModel>; scaleBreaks: ko.ObservableArray<ScaleBreakViewModel>; strips: ko.ObservableArray<StripViewModel>; }