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
521 B
14 lines
521 B
/** |
|
* @param {{ chart: Chart; scale: Scale; index: number; line: LineElement; }} source |
|
* @return {LineElement} |
|
*/ |
|
export function _buildStackLine(source: { |
|
chart: Chart; |
|
scale: Scale; |
|
index: number; |
|
line: LineElement; |
|
}): LineElement; |
|
export type Chart = import('../../core/core.controller.js').default; |
|
export type Scale = import('../../core/core.scale.js').default; |
|
export type PointElement = import('../../elements/element.point.js').default; |
|
import { LineElement } from "../../elements/index.js";
|
|
|