/*! * Copyright (c) Microsoft Corporation. * Licensed under the MIT License. */ import { base } from '../base'; import { ColumnMapBaseProps } from '../controls/columnMap'; import { FluentUITypes } from '@msrvida/fluentui-react-cdn-typings'; import { SandDance } from '@msrvida/sanddance-react'; export interface Props extends ColumnMapBaseProps { themePalette: Partial; tooltipExclusions: string[]; toggleTooltipExclusion: (columnName: string) => void; collapseLabels: boolean; disabled: boolean; chart: SandDance.specs.Chart; view: SandDance.types.View; insightColumns: SandDance.specs.InsightColumns; onChangeSignal: (role: string, column: string, name: string, value: any) => void; } export interface State { showTooltipDialog: boolean; } export declare const chartLabelMap: { key: SandDance.specs.Chart; text: string; }[]; export declare function chartLabel(key: SandDance.specs.Chart): string; export declare const Chart: typeof Chart_Class; export declare class Chart_Class extends base.react.Component { }