Hi,
Basically we want to provide zooming functionality on line chart. But while redrawing chart after selecting particular area, our chart may going to contain decimal values for x-axis. But if we tried to set decimal value to unit parameter, line chart stops working. So we decide that we will explore scatter line chart and try to perform zooming on that.
We want your suggestion for this : By using scatter line chart whether we are going on right track or not ? Or some other options for fulfilling our requirements like zooming,decimal values on x-axis etc . are available ?
One more thing can you please provide us some example of scatter line chart which are having x-axis value set to time values ?
Thanks in advance
<igCA:XamChart Name="ScatterLineChart2D" View3D="False" >
<igCA:XamChart.Legend>
</igCA:XamChart.Legend>
<igCA:XamChart.Series>
<igCA:Series.DataPoints>
<igCA:DataPoint.ChartParameters>
<igCA:ChartParameter Type="ValueY" Value="8"/>
</igCA:DataPoint>
<igCA:ChartParameter Type="ValueY" Value="3"/>
<igCA:ChartParameter Type="ValueY" Value="9"/>
<igCA:ChartParameter Type="ValueY" Value="6"/>
<igCA:ChartParameter Type="ValueY" Value="7"/>
</igCA:Series>
<!-- Axes Style-->
<igCA:Axis AxisType="PrimaryX">
<igCA:Label FontSize="14" Format="{}{0:dd/MMM/yy}"/>
<igCA:Axis.MajorGridline>
</igCA:Axis.MajorGridline>
<igCA:Axis AxisType="PrimaryY">
<igCA:Label FontSize="14"/>
<igCA:Axis.Stripes>
</igCA:Axis.Stripes>
<igCA:Axis AxisType="PrimaryZ" >
<igCA:Label FontSize="14" Visible="False" Foreground="#00000000"/>
</igCA:Axis>
</igCA:XamChart>