hi guys
i want to know if infragistic chart s suppor logrithmic chaling or just linear scaling.
any sample
regards.
There is a good explanation in our Asp.Net help:
http://help.infragistics.com/Help/NetAdvantage/ASPNET/2009.2/CLR3.5/html/Chart_Linear_and_Logarithmic_Axes.html
thanks,
but can you please give me a brief concise description about the difference between \
linear and logrithmic scale with a simle example
regrds.
It supports. Try using this code:
<igChart:XamWebChart x:Name="Chart1">
<igChart:XamWebChart.Axes>
<igChart:Axis AxisType="PrimaryY"
Logarithmic="True" >
<igChart:Axis.MinorGridline>
<igChart:GridlineGroup Unit="0.2" Stroke="Red" />
</igChart:Axis.MinorGridline>
</igChart:Axis>
</igChart:XamWebChart.Axes>
<igChart:XamWebChart.Series>
<igChart:Series ChartType="Column">
<igChart:Series.DataPoints>
<igChart:DataPoint Value="500" />
<igChart:DataPoint Value="40" />
<igChart:DataPoint Value="30" />
</igChart:Series.DataPoints>
</igChart:Series>
</igChart:XamWebChart.Series>
</igChart:XamWebChart>