Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
webbind:start [2025/04/04 07:20] optrix created |
webbind:start [2025/04/06 22:18] (current) optrix |
||
---|---|---|---|
Line 4: | Line 4: | ||
Although its far less flexible than solutions built with the full Javascript API and tools such as D3.js, it provides a minimal-effort way to bring live data to static pages. | Although its far less flexible than solutions built with the full Javascript API and tools such as D3.js, it provides a minimal-effort way to bring live data to static pages. | ||
+ | |||
+ | Fundamentally, | ||
===Adding the Script=== | ===Adding the Script=== | ||
- | You'll need to add a **script** tag in either your HTML or SVG file. | + | You'll need to add a **script** tag in either your HTML or SVG file. We suggest placing the tag at the end of the document in SVG files. |
- | For web pages/HTML files, | + | Note that the syntax is slightly different in SVG files to HTML files - HTML files use the **src** attribute, while SVG files use the **href** attribute. |
<code html> | <code html> | ||
+ | <!-- Import Script for HTML Pages --> | ||
<script src=" | <script src=" | ||
- | </ | ||
- | And for SVG vector images, you'll use... | + | <!-- Import Script |
- | + | < | |
- | <code html> | + | |
- | < | + | |
</ | </ | ||
Line 52: | Line 52: | ||
On the object that you want to respond to live data, add an attribute named **ardibind** followed by the name of the //property you want to change//. For example, **ardibindheight** will alter the //height// property of the object. | On the object that you want to respond to live data, add an attribute named **ardibind** followed by the name of the //property you want to change//. For example, **ardibindheight** will alter the //height// property of the object. | ||
- | The property | + | The value of the // |
===Example Bindings=== | ===Example Bindings=== | ||
- | The example below shows how to make a box change it's width in response to a live value. | + | The example below changes the text inside the DIV to the speed of the Paint Line. |
<code html> | <code html> | ||
- | < | + | < |
</ | </ | ||
- | The following makes horizontal | + | The paint line speed as a **lot** of decimal places. Let's smooth it out by rounding to the nearest 2. |
+ | |||
+ | <code html> | ||
+ | < | ||
+ | </ | ||
+ | |||
+ | It would be nice to show the measurement units. We can use the ' | ||
+ | |||
+ | <code html> | ||
+ | < | ||
+ | </ | ||
+ | |||
+ | We're going to create a bar-chart | ||
+ | |||
+ | <code html> | ||
+ | < | ||
+ | </ | ||
+ | |||
+ | ===Full Examples=== | ||
+ | |||
+ | [[html_barchart|Horizontal Barchart (HTML)]] \\ | ||
+ | [[svg_barchar|Vertical Barchart (SVG)]] | ||
+ | |||
+ | ===Special Functions=== | ||
+ | |||
+ | There are a couple | ||
+ | |||
+ | [[arditextvalue|arditextvalue]] is used with SVG text controls to highlight the dynamic text in a colour different to the prefix and postfix. |