-
Notifications
You must be signed in to change notification settings - Fork 0
KnockoutJS: Label plot
You may want to read about general approach to the KnockoutJS support in IDD [here](KnockoutJS support). This page is about specific plot type.
Label plot is the way to draw a number of text labels.
To create it you must create a plot with data-idd-plot="label"
attribute and three mandatory bindings.
Mandatory bindings:
- iddX (number array) - horizontal coordinates data series
- iddY (number array) - vertical coordinates data series
- iddLabelsText (string array) - a sentences to type
Remark: Length of iddX, iddY and iddLabelsText must be the same. The plot will not be drawn until the length is the same.
Source code: View
<div id="chart" data-idd-plot="chart">
<div data-idd-plot="label" data-bind="iddX: X, iddY: Y, iddLabelsText: Words" />
</div>
Source code:View Model
ko.applyBindings({
X: ko.observable([1,2,3]),
Y: ko.observable([2,3,1]),
Words: ["One","Two","Three"]
});
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