add missing property HighchartsLineChart.linecap

http://api.highcharts.com/highcharts#series<line>.linecap
This commit is contained in:
Alexey Gorshkov
2016-01-22 18:50:15 +03:00
parent b59734a434
commit 0ac50f1ad5
+6
View File
@@ -4432,6 +4432,12 @@ interface HighchartsLineChart extends HighchartsSeriesChart {
* @since 1.2.5
*/
step?: boolean|string;
/**
* The line cap used for line ends and line joins on the graph.
* @default 'round'
*/
linecap?: string;
}
/**