You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
import { TimeSerie, Options } from '@chartwerk/core';
|
|
|
|
declare type LineTimeSerieParams = {
|
|
|
|
confidence: number;
|
|
|
|
mode: Mode;
|
|
|
|
maxLength: number;
|
|
|
|
renderDots: boolean;
|
|
|
|
renderLines: boolean;
|
|
|
|
useOutOfRange: boolean;
|
|
|
|
dashArray: string;
|
|
|
|
class: string;
|
|
|
|
};
|
|
|
|
export declare enum Mode {
|
|
|
|
STANDARD = "Standard",
|
|
|
|
CHARGE = "Charge"
|
|
|
|
}
|
|
|
|
export declare type LineTimeSerie = TimeSerie & Partial<LineTimeSerieParams>;
|
|
|
|
export declare type LineOptions = Options;
|
|
|
|
export {};
|