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?



Comments

  • edited 1:27AM
    i could make the label invisible setting the property Marks / visible off, but i can't assign a differerent value in the X axis from the Mark's value.
  • edited November 2015
    HI..

    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...

Leave a Comment