/*! * devextreme-angular-test * Version: 17.2.8 * Build date: Mon Feb 05 2018 * * Copyright (c) 2012 - 2018 Developer Express Inc. ALL RIGHTS RESERVED * * This software may be modified and distributed under the terms * of the MIT license. See the LICENSE file in the root of the project for details. * * https://github.com/DevExpress/devextreme-angular */ import { CollectionNestedOption } from '../../../core/nested-option'; export abstract class DxiChartSeries extends CollectionNestedOption { get argumentField(): string { return this._getOption('argumentField'); } set argumentField(value: string) { this._setOption('argumentField', value); } get axis(): string { return this._getOption('axis'); } set axis(value: string) { this._setOption('axis', value); } get border(): any { return this._getOption('border'); } set border(value: any) { this._setOption('border', value); } get closeValueField(): string { return this._getOption('closeValueField'); } set closeValueField(value: string) { this._setOption('closeValueField', value); } get color(): string { return this._getOption('color'); } set color(value: string) { this._setOption('color', value); } get cornerRadius(): number { return this._getOption('cornerRadius'); } set cornerRadius(value: number) { this._setOption('cornerRadius', value); } get dashStyle(): string { return this._getOption('dashStyle'); } set dashStyle(value: string) { this._setOption('dashStyle', value); } get highValueField(): string { return this._getOption('highValueField'); } set highValueField(value: string) { this._setOption('highValueField', value); } get hoverMode(): string { return this._getOption('hoverMode'); } set hoverMode(value: string) { this._setOption('hoverMode', value); } get hoverStyle(): any { return this._getOption('hoverStyle'); } set hoverStyle(value: any) { this._setOption('hoverStyle', value); } get ignoreEmptyPoints(): boolean { return this._getOption('ignoreEmptyPoints'); } set ignoreEmptyPoints(value: boolean) { this._setOption('ignoreEmptyPoints', value); } get innerColor(): string { return this._getOption('innerColor'); } set innerColor(value: string) { this._setOption('innerColor', value); } get label(): any { return this._getOption('label'); } set label(value: any) { this._setOption('label', value); } get lowValueField(): string { return this._getOption('lowValueField'); } set lowValueField(value: string) { this._setOption('lowValueField', value); } get maxLabelCount(): number { return this._getOption('maxLabelCount'); } set maxLabelCount(value: number) { this._setOption('maxLabelCount', value); } get minBarSize(): number { return this._getOption('minBarSize'); } set minBarSize(value: number) { this._setOption('minBarSize', value); } get name(): string { return this._getOption('name'); } set name(value: string) { this._setOption('name', value); } get opacity(): number { return this._getOption('opacity'); } set opacity(value: number) { this._setOption('opacity', value); } get openValueField(): string { return this._getOption('openValueField'); } set openValueField(value: string) { this._setOption('openValueField', value); } get pane(): string { return this._getOption('pane'); } set pane(value: string) { this._setOption('pane', value); } get point(): any { return this._getOption('point'); } set point(value: any) { this._setOption('point', value); } get rangeValue1Field(): string { return this._getOption('rangeValue1Field'); } set rangeValue1Field(value: string) { this._setOption('rangeValue1Field', value); } get rangeValue2Field(): string { return this._getOption('rangeValue2Field'); } set rangeValue2Field(value: string) { this._setOption('rangeValue2Field', value); } get reduction(): any { return this._getOption('reduction'); } set reduction(value: any) { this._setOption('reduction', value); } get selectionMode(): string { return this._getOption('selectionMode'); } set selectionMode(value: string) { this._setOption('selectionMode', value); } get selectionStyle(): any { return this._getOption('selectionStyle'); } set selectionStyle(value: any) { this._setOption('selectionStyle', value); } get showInLegend(): boolean { return this._getOption('showInLegend'); } set showInLegend(value: boolean) { this._setOption('showInLegend', value); } get sizeField(): string { return this._getOption('sizeField'); } set sizeField(value: string) { this._setOption('sizeField', value); } get stack(): string { return this._getOption('stack'); } set stack(value: string) { this._setOption('stack', value); } get tag(): any { return this._getOption('tag'); } set tag(value: any) { this._setOption('tag', value); } get tagField(): string { return this._getOption('tagField'); } set tagField(value: string) { this._setOption('tagField', value); } get type(): string { return this._getOption('type'); } set type(value: string) { this._setOption('type', value); } get valueErrorBar(): any { return this._getOption('valueErrorBar'); } set valueErrorBar(value: any) { this._setOption('valueErrorBar', value); } get valueField(): string { return this._getOption('valueField'); } set valueField(value: string) { this._setOption('valueField', value); } get visible(): boolean { return this._getOption('visible'); } set visible(value: boolean) { this._setOption('visible', value); } get width(): number { return this._getOption('width'); } set width(value: number) { this._setOption('width', value); } get argumentType(): string { return this._getOption('argumentType'); } set argumentType(value: string) { this._setOption('argumentType', value); } get innerRadius(): number { return this._getOption('innerRadius'); } set innerRadius(value: number) { this._setOption('innerRadius', value); } get minSegmentSize(): number { return this._getOption('minSegmentSize'); } set minSegmentSize(value: number) { this._setOption('minSegmentSize', value); } get segmentsDirection(): string { return this._getOption('segmentsDirection'); } set segmentsDirection(value: string) { this._setOption('segmentsDirection', value); } get smallValuesGrouping(): any { return this._getOption('smallValuesGrouping'); } set smallValuesGrouping(value: any) { this._setOption('smallValuesGrouping', value); } get startAngle(): number { return this._getOption('startAngle'); } set startAngle(value: number) { this._setOption('startAngle', value); } get closed(): boolean { return this._getOption('closed'); } set closed(value: boolean) { this._setOption('closed', value); } }