A line definition specifies a single line within the chart. For each data element matching the XPath property, a new line is created. The line's value is determined by YValueXPath, and its label by LabelXPath.
To display a static label for a line, enclose the desired label text in single quotes within the LabelXPath property. For example, to label a bar with "Sales", set LabelXPath to 'Sales'.
<LineChartWidth=""Height="200"XPath=""><Title><Content><![CDATA[Incidents vs Problems]]></Content></Title><XAxisValueFormat>Date</XAxisValueFormat><XAxisLabel><Content><![CDATA[Time]]></Content></XAxisLabel><YAxisValueFormat>Numeric</YAxisValueFormat><YAxisLabel><Content><![CDATA[Count]]></Content></YAxisLabel><Lines><Line><XPath><![CDATA[Trend/Incidents]]></XPath><DataXPath><![CDATA[*]]></DataXPath><XValueXPath><![CDATA[Date]]></XValueXPath><YValueXPath><![CDATA[Count]]></YValueXPath><LabelXPath><![CDATA['Incident']]></LabelXPath></Line><Line><XPath><![CDATA[Trend/Problems]]></XPath><DataXPath><![CDATA[*]]></DataXPath><XValueXPath><![CDATA[Date]]></XValueXPath><YValueXPath><![CDATA[Count]]></YValueXPath><LabelXPath><![CDATA['Problem']]></LabelXPath></Line></Lines></LineChart>
This configuration would render a line chart with two lines, one for incidents and one for problems. The chart would display the number of incidents and problems over time, with the X-axis representing the date and the Y-axis representing the count.