import { VisualizationSettings } from './VisualizationSettings'; export declare class TreeMapVisualizationSettings extends VisualizationSettings { constructor(); /** * Gets or sets the color index for the visualization's starting color. A zero-based index is used to set colors instead of a color name. * For example, an index of 5 would be the 6th color in the color scheme regardless of the theme colors being used. */ StartColorIndex?: number; /** * Gets or sets whether to show labels that display information about the categories and values. */ showValues: boolean; }