HighLowOpenClose Charts
The following image represents the HighLowOpenClose chart when you set ChartType property to HighLowOpenClose and specifiy the data values for the XValuesSource, OpenValuesSource, CloseValuesSource, HighValuesSource, and LowValuesSource, like the following:
<c1chart:C1Chart ChartType="HighLowOpenClose">
<c1chart:C1Chart.Data>
<c1chart:ChartData>
<c1chart:HighLowOpenCloseSeries
XValues="1 2 3 4 5"
HighValues="103 105 107 102 99"
LowValues="100 99 101 98 97"
OpenValues="100 100 105 100 99"
CloseValues="102 103 103 99 98"
/>
</c1chart:ChartData>
</c1chart:C1Chart.Data>
</c1chart:C1Chart>