All Downloads are FREE. Search and download functionalities are using the official Maven repository.

package.dist.model.choropleth.d.ts Maven / Gradle / Ivy

import { ChartModel } from './model';
/**
 * Base thematic maps chart model layer
 */
export declare class ChoroplethModel extends ChartModel {
    private _colorScale;
    private _matrix;
    constructor(services: any);
    /**
     * @override
     * @param value
     * @returns string
     */
    getFillColor(value: number): any;
    /**
     * Helper function that will generate a dictionary
     */
    getCombinedData(): {};
    /**
     * Generate tabular data from display data
     * @returns Array
     */
    getTabularDataArray(): any[];
    getColorClassName(configs: {
        value?: number;
        originalClassName?: string;
    }): string;
    protected setColorClassNames(): void;
}