66033e041660389caa882490822e4ef87f893a10cbb4ec44c210e1b665b6d0c2e0a890377e5b22f52ba8d4d560522976225879629c7c94c40b7b6798be73c5 562 B

123456789101112131415
  1. import SeriesData from '../data/SeriesData.js';
  2. /**
  3. * LegendVisualProvider is an bridge that pick encoded color from data and
  4. * provide to the legend component.
  5. */
  6. declare class LegendVisualProvider {
  7. private _getDataWithEncodedVisual;
  8. private _getRawData;
  9. constructor(getDataWithEncodedVisual: () => SeriesData, getRawData: () => SeriesData);
  10. getAllNames(): string[];
  11. containName(name: string): boolean;
  12. indexOfName(name: string): number;
  13. getItemVisual(dataIndex: number, key: string): any;
  14. }
  15. export default LegendVisualProvider;