API / Series/Line / LineSeriesInterpolation
LineSeriesInterpolation: {
type:"linear"; } | {type:"monotone"; } | {tension:number;type:"cardinal"; }
Defined in: src/core/types/chart/line.ts:59
Type declaration
{ type: "linear"; }
| Name | Type |
|---|---|
type |
"linear" |
{ type: "monotone"; }
| Name | Type |
|---|---|
type |
"monotone" |
{ tension: number; type: "cardinal"; }
| Name | Type | Description |
|---|---|---|
tension? |
number |
Controls how tightly the curve follows the control points. Minimum 0 Maximum 1 Default 0 |
type |
"cardinal" |
- |
Previous