%PDF- <> %âãÏÓ endobj 2 0 obj <> endobj 3 0 obj <>/ExtGState<>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI] >>/Annots[ 28 0 R 29 0 R] /MediaBox[ 0 0 595.5 842.25] /Contents 4 0 R/Group<>/Tabs/S>> endobj ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY>endobj 2 0 obj<>endobj 2 0 obj<>endobj 2 0 obj<>endobj 2 0 obj<> endobj 2 0 obj<>endobj 2 0 obj<>es 3 0 R>> endobj 2 0 obj<> ox[ 0.000000 0.000000 609.600000 935.600000]/Fi endobj 3 0 obj<> endobj 7 1 obj<>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI]>>/Subtype/Form>> stream
/*!*
*
* Copyright (c) Highsoft AS. All rights reserved.
*
*!*/
import * as globals from "../globals.src";
import * as _Highcharts from "../highcharts.src";
/**
* Adds the module to the imported Highcharts namespace.
*
* @param highcharts
* The imported Highcharts namespace to extend.
*/
export function factory(highcharts: typeof Highcharts): void;
declare module "../highcharts.src" {
interface Chart {
/**
* Add an annotation to the chart after render time.
*
* @param options
* The annotation options for the new, detailed annotation.
*
* @return The newly generated annotation.
*/
addAnnotation(options: AnnotationsOptions, redraw?: boolean): Annotation;
/**
* Remove an annotation from the chart.
*
* @param idOrAnnotation
* The annotation's id or direct annotation object.
*/
removeAnnotation(idOrAnnotation: (number|string|Annotation)): void;
}
interface Point {
mock?: boolean;
}
/**
* Function which generates the path of the halfcircle.
*
* @param pixelInterval
* diameter of the circle in pixels
*
* @param numberOfCircles
* number of cricles
*
* @param startX
* x position of the first circle
*
* @param y
* y position of the bottom of the timeCycles
*
* @return path
*/
function getCirclePath(pixelInterval: number, numberOfCircles: number, startX: number, y: number): string;
/**
* Function to create start of the path.
*
* @param x
* x position of the TimeCycles
*
* @param y
* y position of the TimeCycles
*
* @return path
*/
function getStartingPath(x: number, y: number): string;
}
export default factory;
export let Highcharts: typeof _Highcharts;