We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
You may want to read about general approach to the KnockoutJS support in IDD [here](KnockoutJS support). This page is about specific plot type.
To create area plot you must create a plot with data-idd-plot="area" attribute and three mandatory bindings.
data-idd-plot="area"
Mandatory bindings:
Remark: Length of iddX, iddY1 and iddY2 must be the same. The plot will not be drawn until the length is the same.
Optional bindings:
Source code: View
<div id="chart" data-idd-plot="chart"> <div data-idd-plot="area" data-bind="iddX: X, iddY1: Y1, iddY2: Y2, iddFill : ActiveColour" /> </div>
Source code:View Model
ko.applyBindings({ X: ko.observable([1,2,3]), Y1: ko.observable([2,3,1]), Y2: ko.observable([3,5,2]), ActiveColour: "Red" });
Interactive sample
Home FAQ UI Guidelines Export to SVG
Plot Figure Chart ChartViewer
Polyline Markers Area Heatmap DOM Plot Labels Bing Maps
Intro General bindings Area plot Bars plot Polyline Heatmap Markers Label plot Box and whisker plot Petals and BullEye plot Axis Palette Editor
Update layout Axes Legend Color Palette Navigation Bound Plots Tooltips and Probes