Chartwerk Line Pod
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.

14 lines
479 B

2 years ago
import { Serie, Options } from '@chartwerk/core';
type LineTimeSerieParams = {
maxLength: number,
renderDots: boolean,
renderLines: boolean, // TODO: refactor same as scatter-pod
dashArray: string; // dasharray attr, only for lines
class: string; // option to add custom class to each serie element
2 years ago
renderArea: boolean; // TODO: move to render type
}
2 years ago
export type LineTimeSerie = Serie & Partial<LineTimeSerieParams>;
export type LineOptions = Options;