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 12:39PM
    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

Rich Text Editor. To edit a paragraph's style, hit tab to get to the paragraph menu. From there you will be able to pick one style. Nothing defaults to paragraph. An inline formatting menu will show up when you select text. Hit tab to get into that menu. Some elements, such as rich link embeds, images, loading indicators, and error messages may get inserted into the editor. You may navigate to these using the arrow keys inside of the editor and delete them with the delete or backspace key.