GraphSetPropertiesToGraph method (WinStudio scripts)
Note:  This topic applies to the graphing tool, which is supported for
		backward compatibility.  We recommend that, if you want to add charts or gauges
		to a form, use the newer FusionCharts tool instead. See 
		About charts and gauges. 
	 
      Applies To
IWSFormComponent interface, graph objects
Definition
Sets the IDO properties to graph.
Syntax
object.GraphSetPropertiesToGraph( propertyList )
| Part | Description | 
| object | Required. A reference to a valid graph component object. | 
| propertyList | Required. A list of the class System.Collections.Generic.List(Of String). | 
Example
Dim propsToGraph As System.Collections.Generic.List(Of String) = _
   New System.Collections.Generic.List(Of String)
propsToGraph.Add("property01")
propsToGraph.Add("property02")
ThisForm.Components("graph1").GraphSetPropertiesToGraph(propsToGraph)