Chart Labels
Hi, i'm trying to create a simple Chart but if i assign X Values, chart draws a kind of label that has the same value as the X axis.
It doesn't make sense, its the same info.
Is there any property to make it invisible or set the value of this label?
It doesn't make sense, its the same info.
Is there any property to make it invisible or set the value of this label?
Comments
Just found out..
you can make marks invisible from code
ch := TFrxChartView(rep.FindObject('Chart1'));
ch.chart.series.Marks.Visible := false;
and also
ch.chart.series.Marks.Style := smsValue; //to display y-value instead of x-value
hope this help...