Other marks on

edited 3:51PM in FastReport 4.0
grafico.PNG

What can be done to remove the marks (is circled) which is one over the other?

Comments

  • gordkgordk St.Catherines On. Canada.
    edited 3:51PM
    in designer select the chart then edit the chart, then select each series and then go to marks in
    object inspector and edit marks properties
  • edited 3:51PM

    The problem is that I create the series via code, as follows the example below. The report is just the blank chart and fill in the code.

    and which property should be changed to not get the text on top of another?



    TfrxChartView(Sender).AddSeries(TfrxChartSeries.csBar);
    TfrxChartView(Sender).Chart.Series[0].LegendTitle := '09/10/2013';
    TfrxChartView(Sender).Chart.Series[0].Marks.Style := smsValue;

    TfrxChartView(Sender).SeriesData[0].DataType := dtFixedData;
    TfrxChartView(Sender).SeriesData[0].XSource := 'value1; value2; value3';
    TfrxChartView(Sender).SeriesData[0].YSource := '31.5;28.54;31.58';

Leave a Comment