This question is locked. New answers and comments are not allowed.
At first the x-axis is show scale ( 5,6,7,8,9,10,11) normally, now I want to hide the scale axis,and use "A" to replace 5,and use "B" to replace 10 as x-axis label? How to do that? This is the picture:https://www.yousendit.com/download/TEhXTG0rcTJwaFF3anNUQw
This is my code,but seems wrong.
This is my code,but seems wrong.
this
.RadChart1.DefaultView.ChartArea.AxisX.AxisLabelsVisibility = Visibility.Collapsed;
for
(
int
i = 0; i < RadChart1.SeriesMappings.Count; i++)
for
(
int
j=0;j< RadChart1.SeriesMappings[i].ItemMappings.Count;j++)
{
//if( RadChart1.SeriesMappings[i].ItemMappings[j]
// RadChart1.SeriesMappings[i].ItemMappings[j].DataPointMember.ToString();
if
(??==5)
??.xlabel=
"A"
;
}