is it possible to access data (in report code) in order to set SeriesLabels visibility?
Code: Select all
public class Report : Stimulsoft.Report.StiReport
{
public Report() {
this.InitializeComponent();
//this works
this.Chart1.SeriesLabels.Visible = false;
//how to achieve this
this.Chart1.SeriesLabels.Visible = access flag 'ShowSeriesLabels' in report data
}
#region StiReport Designer generated code - do not modify
#endregion StiReport Designer generated code - do not modify
}
Thank you in advance for any assistance. Best regards and have a wonderful day!