Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
webbind:start [2025/04/05 03:36]
optrix
webbind:start [2025/04/06 22:18] (current)
optrix
Line 5: Line 5:
 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, it lets you copy a single point of ARDI data to an attribute on an HTML/SVG element. For example, you can copy a temperature to the text in a DIV, SPAN or TEXT element. Or you can copy it into the //height//, //fill colour//, //scale//, //rotation// or any other web attribute.+Fundamentally, it lets you copy a points of ARDI data to attributes on HTML or SVG elements. For example, you can copy a temperature to the text in a DIV, SPAN or TEXT element. Or you can copy a status into //height//, //fill colour//, //scale//, //rotation// or any other attribute.
  
 ===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, you'll use...+Note that the syntax is slightly different in SVG files to HTML files - HTML files use the **src** attributewhile SVG files use the **href** attribute.
  
 <code html> <code html>
 +<!-- Import Script for HTML Pages -->
 <script src="https://demo.optrix.com.au/plugins/optrix/livepage.js"></script> <script src="https://demo.optrix.com.au/plugins/optrix/livepage.js"></script>
-</code> 
  
-And for SVG vector images, you'll use... +<!-- Import Script for SVG Images --
- +<script href="https://demo.optrix.com.au/plugins/optrix/livepage.js"></script>
-<code html+
-<script src="https://demo.optrix.com.au/plugins/optrix/livesvg.js"></script>+
 </code> </code>
  
Line 79: Line 77:
  
 <code html> <code html>
-   <div style="display: block; background-color: green; height: 2em;" ardibindwidth="point=Paint Line.Speed - Actual;mininput=50;maxinput=80;minoutput=0;maxoutput=100;postfix=%"/>+   <div style="display: block; background-color: green; height: 2em;" ardibindwidth="point=Paint Line.Speed - Actual;mininput=50;maxinput=80;minoutput=0;maxoutput=100;suffix=%"/>
 </code> </code>