DashType
The dash line type.
import { Component } from '@angular/core';
import { DashType } from '@progress/kendo-angular-charts';
@Component({
selector: 'my-app',
template: `
<kendo-chart>
<kendo-chart-series>
<kendo-chart-series-item type="line" [data]="[1, 2, 3]" [dashType]="dashType">
</kendo-chart-series-item>
</kendo-chart-series>
</kendo-chart>
`
})
class AppComponent {
public dashType: DashType = "dot";
}
Values
- "dash"
- "dashDot"
- "dot"
- "longDash"
- "longDashDot"
- "longDashDotDot"
- "solid"