import { ChartVisualizationSettingsBase } from './ChartVisualizationSettingsBase'; export declare class FinancialVisualizationSettingsBase extends ChartVisualizationSettingsBase { /** * Gets or sets whether the left axis will use the Logarithmic scale. Linear is used by default. */ leftAxisIsLogarithmic: boolean; /** * Gets or sets the minimum value for the left axis. Default value is null, which also equates to zero. */ leftAxisMinValue?: number; /** * Gets or sets the maximum value for the left axis. Default value is calculated automatically depending on the values. */ leftAxisMaxValue?: number; }