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.
23 lines
480 B
23 lines
480 B
import { CoreSeries } from '@chartwerk/core'; |
|
import { LineTimeSerie } from '../types'; |
|
|
|
|
|
const LINE_SERIE_DEFAULTS = { |
|
maxLength: undefined, |
|
renderDots: false, |
|
renderLines: true, |
|
dashArray: '0', |
|
class: '', |
|
renderArea: false, |
|
}; |
|
|
|
export class LineSeries extends CoreSeries<LineTimeSerie> { |
|
|
|
constructor(series: LineTimeSerie[]) { |
|
super(series); |
|
} |
|
|
|
protected get defaults(): LineTimeSerie { |
|
return { ...this._coreDefaults, ...LINE_SERIE_DEFAULTS }; |
|
} |
|
}
|
|
|