javascript - Add a horizontal line to the chart -
i have requirement have horizontal lines in kendo line chart denote maximum , minimum values high limit , low limit.
another solution add together plotbands.
example:
<div id="chart"></div> <script> $("#chart").kendochart({ valueaxis: { plotbands: [ { from: 89, to: 90, color: "red" } ] } }); </script>
javascript kendo-dataviz kendo-chart
No comments:
Post a Comment