TfrxChartView question

I am using FastReports5 in Delphi XE8.

I have created a report entirely through Delphi code adding various TfrxChartView charts and all seems to work fine.

However, on one of the charts I have added a chart series of TfrxChartSeries.csBar and would like to be able to set MarksOnBar = True.

I am able this quite easily when creating a report within the Fast Reports designer itself, no problem, I just add the bar to the chart and its properties are available.

However, I cannot see how to do this from within Delphi code. There appear to be no options available from the Code Insight lists for Marks: TSeriesMarks.

Al I have done to create this series is:

ChartView.AddSeries(csBar);

Then I assign various other properties thus:

ChartView.Chart.Series[0]....property etc

That all works fine but I am just curious how I tell my program to recognize the Bar and give me its options.

Thank you.




Leave a Comment