/*! * 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 { NestedOption } from '../../../core/nested-option'; export abstract class DxoVizFont extends NestedOption { get color(): string { return this._getOption('color'); } set color(value: string) { this._setOption('color', value); } get family(): string { return this._getOption('family'); } set family(value: string) { this._setOption('family', value); } get opacity(): number { return this._getOption('opacity'); } set opacity(value: number) { this._setOption('opacity', value); } get size(): number| string { return this._getOption('size'); } set size(value: number| string) { this._setOption('size', value); } get weight(): number { return this._getOption('weight'); } set weight(value: number) { this._setOption('weight', value); } }