Polyline object
- Last UpdatedJul 26, 2024
- 1 minute read
You must define at least two points in order to load the polyline object. Using the same coordinates for the two points is not recommended.
The following elements can be specified for a polyline object.
|
Elements |
Description |
|---|---|
|
Points |
Point elements, at least two required. An object is not created if the Points element is assigned invalid values or is missing values. |
|
Pen |
Pen element. |
|
Title |
Object name. Optional. |
|
AnimationLinks |
Optional animation links list. Fill Color, Text Color, Percent Fill, Value Display are not permitted. |
Example:
<Polyline>
<Title>polyline1</Title>
<Pen>
<PenColor><Name>Black</Name></PenColor>
<PenWidth>1</PenWidth>
<PenStyle>Solid</PenStyle>
</Pen>
<Points>
<Point><X>50</X><Y>150</Y></Point>
<Point><X>60</X><Y>250</Y></Point>
<Point><X>70</X><Y>350</Y></Point>
<Point><X>80</X><Y>450</Y></Point>
</Points>
<AnimationLinks>
</AnimationLinks>
</Polyline>
Minimal example:
<Polyline>
<Points>
<Point><X>50</X><Y>150</Y></Point>
<Point><X>80</X><Y>450</Y></Point>
</Points>
</Polyline>