Merge pull request #7737 from agorshkov23/master

added missing property HighchartsLineChart.linecap
This commit is contained in:
Masahiro Wakame
2016-01-25 12:09:07 +09:00
+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;
}
/**