UNPKG

devexpress-reporting

Version:

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

29 lines (28 loc) 1.37 kB
/** * DevExpress HTML/JS Reporting (chart\components\series\_view.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 { FillStyle } from './_fillStyle'; import { SerializableModel } from '@devexpress/analytics-core/analytics-elements'; import { IModelSerializer } from '@devexpress/analytics-core/analytics-utils'; import * as ko from 'knockout'; export declare class SeriesViewViewModel extends SerializableModel { static from(model: any, serializer?: IModelSerializer): ko.Observable<SeriesViewViewModel>; dispose(): void; static toJson(value: any, serializer: any, refs: any): any; _getInfo(typeName: string): import("@devexpress/analytics-core/analytics-utils").ISerializationInfo[]; private _createPropertyDisabledDependence; private _createMarkerDependences; private _createLinkOptionsDependences; preInitProperties(model: any): void; constructor(model: any, serializer?: IModelSerializer); axisXName: ko.Observable<string> | ko.Computed<string>; axisYName: ko.Observable<string> | ko.Computed<string>; paneName: ko.Observable<string> | ko.Computed<string>; fillStyle: FillStyle; barWidth: ko.Observable<number> | ko.Computed<number>; typeName: string; }