(point: ResolvedAreaSeriesConfig['data'][number])
| 36 | parseCssColorToRgba01(color) ?? ([0, 0, 0, 1] as const); |
| 37 | |
| 38 | const isTupleDataPoint = (point: ResolvedAreaSeriesConfig['data'][number]): point is DataPointTuple => Array.isArray(point); |
| 39 | |
| 40 | const getPointXY = ( |
| 41 | point: ResolvedAreaSeriesConfig['data'][number] |