import { YAxisVisualizationSettings } from './YAxisVisualizationSettings'; export declare class ScatterVisualizationSettings extends YAxisVisualizationSettings { constructor(); /** * Gets or sets if the X axis will use the Logarithmic scale. Linear is used by default. */ xAxisIsLogarithmic: boolean; /** * Gets or sets the minimum value for the X axis. Default value is 0. */ xAxisMinValue?: number; /** * Gets or sets the maximum value for the X axis. Default value is calculated automatically depending on the values. */ xAxisMaxValue?: number; }