code is below
""
List<int> listMaxOrMinValue = new List<int>();
int chtMaxValue, chtMinValue;
for (int i = 1; i < ds.Tables[0].Columns.Count; i++)
listMaxOrMinValue.Add(Convert.ToInt32(Math.Round(Convert.ToDouble(ds.Tables[0].Rows[0][i]) / 1000000)));
chtMaxValue = listMaxOrMinValue.Max();
chtMinValue = listMaxOrMinValue.Min();
.
.
.(lots of coding)
.
.
radChartBottomRight.DefaultView.ChartArea.AxisY.AutoRange = false;
chtMaxValue = ChtMaxValue(chtMaxValue);
chtMinValue = ChtMinValue(chtMinValue);
radChartBottomRight.DefaultView.ChartArea.AxisY.MaxValue = Math.Round((Convert.ToDouble(chtMaxValue) / 1000)) * 1000 + 1000;
radChartBottomRight.DefaultView.ChartArea.AxisY.MinValue = Math.Round((Convert.ToDouble(chtMinValue) / 1000)) * 1000;
radChartBottomRight.DefaultView.ChartArea.AxisY.Visibility = Visibility.Visible; -> this is not effective!!!
""
When I code like this, Chart's AxisY is not visible!!! What Can I do? please help~~