Hi everyone I have 2 issues in xamdatachart
1.How to change the color of grid lines of xamdatachart?
2. How to change the color of only origin line (along x-axis) in a xamdatachart?
Can anyone help me in this?
the grid lines are set by the MajorStroke on the axis, and the origin line is set by the Stroke on the axis.
Thank you very much Mr. Murray. I could solve my first issue. But, the sencond issue, the problem is my chart contains Y range from (-number to + number) and X range from 0 to +number.So, can you suggest me a way to highlight only that particular Major line of Origin of Y-Axis? Here i am adding my code.
<ig:NumericYAxis x:Name="yAxis"
Opacity="0.3"
Label="{}{:N1}"MajorStroke="Gray">
<ig:NumericYAxis.LabelSettings>
<ig:AxisLabelSettings Location="OutsideBottom" Extent="80"/>
</ig:NumericYAxis.LabelSettings>
</ig:NumericYAxis>