highcharts
Version:
JavaScript charting framework
36 lines (35 loc) • 1.04 kB
TypeScript
/*!*
*
* Copyright (c) Highsoft AS. All rights reserved.
*
*!*/
import * as globals from "../globals.src";
import * as _Highcharts from "../highcharts.src";
declare module "../highcharts.src" {
interface InterpolationOptionsObject {
/**
* Represents how much blur should be added to the interpolated image.
* Works best in the range of 0-1, all higher values would need a lot
* more performance of the machine to calculate more detailed
* interpolation.
*/
blur: number;
/**
* Enable or disable the interpolation.
*/
enabled: boolean;
}
/**
* Find color of point based on color axis.
*
* @param value
* Value to find corresponding color on the color axis.
*
* @param point
* Point to find it's color from color axis.
*
* @return Color in RGBa array.
*/
function colorFromPoint(value: (number|null), point: Point): Array<number>;
}
export default _Highcharts;