import { ChartVisualizationSettings } from './ChartVisualizationSettings'; import { AxisTitleMode } from '../Enums'; export declare abstract class YAxisVisualizationSettings extends ChartVisualizationSettings { /** * Gets or sets whether the Y axis will use the Logarithmic scale. Linear is used by default. */ yAxisIsLogarithmic: boolean; /** * Gets or sets the minimum value for the Y axis. Default value is null, which also equates to zero. */ yAxisMinValue?: number; /** * Gets or sets the maximum value for the Y axis. Default value is calculated automatically depending on the values. */ yAxisMaxValue?: number; /** * Gets or sets the Y axis title mode. Default value is None. */ axisTitleMode: AxisTitleMode; }