highcharts-multicolor-series
Version:
Highcharts plugin that adds new series: multicolor-series, where you can define color for each part of a path, between two points.
39 lines (27 loc) • 1.18 kB
HTML
<meta charset="utf-8">
<title>Test multicolor series</title>
<!-- QUnit panel styles -->
<link rel="stylesheet" href="https://code.jquery.com/qunit/qunit-2.20.0.css">
<body>
<!-- QUnit panel elements -->
<div id="qunit" style="position: relative;"></div>
<div id="qunit-fixture"></div>
<!-- Test elements -->
<div id="coloredline-container" style="margin: 0px auto;width: 640px;"></div>
<div id="coloredarea-container" style="margin: 0px auto;width: 640px;"></div>
<div id="area-chart-alt-container" style="margin: 0px auto; width: 640px;"></div>
<!-- External scripts -->
<script src="https://code.jquery.com/qunit/qunit-2.20.0.js"></script>
<script src="https://code.highcharts.com/highcharts.js"></script>
<script src="../../dist/multicolor-series.js"></script>
<!-- Test helper file -->
<script src="./test-helper.js"></script>
<script src="./coloredline-helper.js"></script>
<script src="./coloredarea-helper.js"></script>
<!-- Scripts files -->
<script src="./coloredline.test.js"></script>
<script src="./coloredarea.test.js"></script>
<!-- Testem snippet -->
<script src="/testem.js"></script>
</body>