Compare various dash styles
Description
The following code shows how to compare various dash styles.
Example
<!DOCTYPE html>
<html>
<head>
<script type='text/javascript'
src='https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js'></script>
<script type='text/javascript'>
var renderer;
$(function () {<!--from w w w. j a va2s. co m-->
var dashStyles = [
'Solid',
'ShortDash',
'ShortDot',
'ShortDashDot',
'ShortDashDotDot',
'Dot',
'Dash',
'LongDash',
'DashDot',
'LongDashDot',
'LongDashDotDot'
];
renderer = new Highcharts.Renderer(
$('#container')[0],
400,
400
);
$.each(dashStyles, function (i, dashStyle) {
renderer.text(dashStyle, 10, 30 * i + 20)
.add();
renderer.path(['M', 0, 30 * i + 23, 'L', 400, 30 * i + 23])
.attr({
'stroke-width': 2,
stroke: 'black',
dashstyle: dashStyle
})
.add();
});
});
</script>
</head>
<body>
<script src="http://code.highcharts.com/highcharts.js"></script>
<div id="container" style="height: 400px"></div>
</body>
</html>