This is a migrated thread and some comments may be shown as answers.

Legend Text Getting Cut Off

4 Answers 126 Views
BarCode
This is a migrated thread and some comments may be shown as answers.
Rich Schone
Top achievements
Rank 1
Veteran
Rich Schone asked on 29 May 2020, 07:34 PM
The legend text is getting cut off.  There does not seem to be any pattern to the issue.  I am using Microsoft Visual Studio Community 2019 and have Telerik installed.  I have created several graphs and have gone into the graph properties of the graph.  I selected Series --- <Then the bar Series> --- LegendItem and entered the value.  The text is getting cut off.  I have attached several screen shots. 

4 Answers, 1 is accepted

Sort by
0
Rich Schone
Top achievements
Rank 1
Veteran
answered on 29 May 2020, 07:37 PM
Here is the properties page layout. 
0
Martin Ivanov
Telerik team
answered on 03 Jun 2020, 05:15 PM

Hello Rich,

Thank you for the screenshots. I've checked them on my side, but couldn't notice anything unusual in the view, except the cut off texts. However, it is not clear why this happens. This said, would it be possible to send me the layout where the charts and the legend controls are defined? I mean the XAML that defines the host panels, so I can check if there is something in their sizing that could cause this. Also, can you show me the setup of the charts and the legend? A runnable project showing the issue will be most useful if you can create one.

Additionally, can you tell me if this ticket related to UI for WPF or the Reporting product? Currently, the ticket is opened with Product set to Barcode for WPF.

Thank you for any help you can provide.

Regards,
Martin Ivanov
Progress Telerik

Progress is here for your business, like always. Read more about the measures we are taking to ensure business continuity and help fight the COVID-19 pandemic.
Our thoughts here at Progress are with those affected by the outbreak.
0
Rich Schone
Top achievements
Rank 1
Veteran
answered on 11 Jun 2020, 08:09 PM

Thank you for your reply and here is a summary of what we are doing.  We have created a windows based program using WPF and Telerik reporting software. (Telerik.ReportViewer.Wpf,  Telerik.Reporting)  When a user presses a button, application calls the method (function) connected with the button. The code then calls a method (function) which returns a list of objects from the database. 

Our application has been coded using the Model-View-Controller (MVC) design pattern.  When the user presses a button. The application calls the method (function) in the contro connected with the button.  The code queries a database and returns a list of objects. The list is changed into a  IEnumerable.

Next, the code creates a Telerik.Reporting.Report object along with an Telerik.Reporting.InstanceReportSource and passes in the need information. The following is the code.

InstanceReportSource instanceReportSource = new InstanceReportSource();

IEnumerable<DashboardReportModel> iEnumerable = dashboardReportModelList;

DashboardReport dispositionReport = new DashboardReport(iEnumerable);

instanceReportSource.ReportDocument = dispositionReport;

ReportViewer reportViewer = new ReportViewer();
reportViewer.ReportSource = instanceReportSource;

TransitionControl.Content = reportViewer;

<!--- The following is the XAML of the page containing the button -->

<UserControl x:Class="SafeClient.Controls.Reports.DashboardView"
      xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
      xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
      xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
      xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
      xmlns:local="clr-namespace:SafeClient.Controls.Reports"
      xmlns:telerik="http://schemas.telerik.com/2008/xaml/presentation"
      xmlns:parametercontrols="clr-namespace:SafeClient.Reports.ParameterControls"
      mc:Ignorable="d"
      d:DesignHeight="450" d:DesignWidth="800">
  <telerik:RadTransitionControl x:Name="TransitionControl">
    <telerik:RadTransitionControl.Transition>
      <telerik:FlipWarpTransition x:Name="historyTransitionEffect" />
    </telerik:RadTransitionControl.Transition>
    <Grid>
      <Grid.RowDefinitions>
        <RowDefinition Height="Auto" />
        <RowDefinition />
      </Grid.RowDefinitions>

      <ScrollViewer HorizontalScrollBarVisibility="Disabled" Grid.Row="1">
        <Grid x:Name="Parameters" Visibility="{Binding ParametersVisibility}">
          <Grid.ColumnDefinitions>
            <ColumnDefinition Width="Auto"></ColumnDefinition>
            <ColumnDefinition></ColumnDefinition>
          </Grid.ColumnDefinitions>

          <StackPanel Orientation="Vertical" VerticalAlignment="Top">
            <parametercontrols:StartDateControl x:Name="_startDateControl"></parametercontrols:StartDateControl>
            <parametercontrols:EndDateControl x:Name="_endDateControl"></parametercontrols:EndDateControl>
            <Button Content="Generate Report" Width="150" Margin="10,10" Click="GenerateReport_Click"/>
          </StackPanel>
        </Grid>
      </ScrollViewer>
    </Grid>

 

<!--- Here is the code from the .Designer.cs -->

partial class DashboardReport
    {
        #region Component Designer generated code
        /// <summary>
        /// Required method for telerik Reporting designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            Telerik.Reporting.GraphGroup graphGroup1 = new Telerik.Reporting.GraphGroup();
            Telerik.Reporting.GraphTitle graphTitle1 = new Telerik.Reporting.GraphTitle();
            Telerik.Reporting.DateTimeScale dateTimeScale1 = new Telerik.Reporting.DateTimeScale();
            Telerik.Reporting.NumericalScale numericalScale1 = new Telerik.Reporting.NumericalScale();
            Telerik.Reporting.GraphGroup graphGroup2 = new Telerik.Reporting.GraphGroup();
            Telerik.Reporting.GraphGroup graphGroup3 = new Telerik.Reporting.GraphGroup();
            Telerik.Reporting.ToggleVisibilityAction toggleVisibilityAction1 = new Telerik.Reporting.ToggleVisibilityAction();
            Telerik.Reporting.GraphGroup graphGroup4 = new Telerik.Reporting.GraphGroup();
            Telerik.Reporting.GraphTitle graphTitle2 = new Telerik.Reporting.GraphTitle();
            Telerik.Reporting.CategoryScale categoryScale1 = new Telerik.Reporting.CategoryScale();
            Telerik.Reporting.NumericalScale numericalScale2 = new Telerik.Reporting.NumericalScale();
            Telerik.Reporting.GraphGroup graphGroup5 = new Telerik.Reporting.GraphGroup();
            Telerik.Reporting.GraphGroup graphGroup6 = new Telerik.Reporting.GraphGroup();
            Telerik.Reporting.ToggleVisibilityAction toggleVisibilityAction2 = new Telerik.Reporting.ToggleVisibilityAction();
            Telerik.Reporting.GraphGroup graphGroup7 = new Telerik.Reporting.GraphGroup();
            Telerik.Reporting.GraphTitle graphTitle3 = new Telerik.Reporting.GraphTitle();
            Telerik.Reporting.CategoryScale categoryScale2 = new Telerik.Reporting.CategoryScale();
            Telerik.Reporting.NumericalScale numericalScale3 = new Telerik.Reporting.NumericalScale();
            Telerik.Reporting.GraphGroup graphGroup8 = new Telerik.Reporting.GraphGroup();
            Telerik.Reporting.CategoryScale categoryScale3 = new Telerik.Reporting.CategoryScale();
            Telerik.Reporting.CategoryScale categoryScale4 = new Telerik.Reporting.CategoryScale();
            Telerik.Reporting.NumericalScale numericalScale4 = new Telerik.Reporting.NumericalScale();
            Telerik.Reporting.Drawing.StyleRule styleRule1 = new Telerik.Reporting.Drawing.StyleRule();
            this.pageHeaderSection1 = new Telerik.Reporting.PageHeaderSection();
            this.detail = new Telerik.Reporting.DetailSection();
            this.graph1 = new Telerik.Reporting.Graph();
            this.cartesianCoordinateSystem1 = new Telerik.Reporting.CartesianCoordinateSystem();
            this.graphAxis2 = new Telerik.Reporting.GraphAxis();
            this.graphAxis1 = new Telerik.Reporting.GraphAxis();
            this.objectDataSource2 = new Telerik.Reporting.ObjectDataSource();
            this.barSeries1 = new Telerik.Reporting.BarSeries();
            this.barSeries2 = new Telerik.Reporting.BarSeries();
            this.graph2 = new Telerik.Reporting.Graph();
            this.cartesianCoordinateSystem2 = new Telerik.Reporting.CartesianCoordinateSystem();
            this.graphAxis7 = new Telerik.Reporting.GraphAxis();
            this.graphAxis3 = new Telerik.Reporting.GraphAxis();
            this.objectDataSource3 = new Telerik.Reporting.ObjectDataSource();
            this.barSeries3 = new Telerik.Reporting.BarSeries();
            this.barSeries4 = new Telerik.Reporting.BarSeries();
            this.barSeries5 = new Telerik.Reporting.BarSeries();
            this.barSeries6 = new Telerik.Reporting.BarSeries();
            this.barSeries7 = new Telerik.Reporting.BarSeries();
            this.barSeries8 = new Telerik.Reporting.BarSeries();
            this.barSeries9 = new Telerik.Reporting.BarSeries();
            this.barSeries10 = new Telerik.Reporting.BarSeries();
            this.barSeries11 = new Telerik.Reporting.BarSeries();
            this.barSeries12 = new Telerik.Reporting.BarSeries();
            this.barSeries13 = new Telerik.Reporting.BarSeries();
            this.barSeries14 = new Telerik.Reporting.BarSeries();
            this.graph3 = new Telerik.Reporting.Graph();
            this.cartesianCoordinateSystem3 = new Telerik.Reporting.CartesianCoordinateSystem();
            this.graphAxis9 = new Telerik.Reporting.GraphAxis();
            this.graphAxis8 = new Telerik.Reporting.GraphAxis();
            this.objectDataSource4 = new Telerik.Reporting.ObjectDataSource();
            this.barSeries15 = new Telerik.Reporting.BarSeries();
            this.barSeries16 = new Telerik.Reporting.BarSeries();
            this.graphAxis5 = new Telerik.Reporting.GraphAxis();
            this.graphAxis4 = new Telerik.Reporting.GraphAxis();
            this.pageFooterSection1 = new Telerik.Reporting.PageFooterSection();
            this.graphAxis6 = new Telerik.Reporting.GraphAxis();
            this.objectDataSource1 = new Telerik.Reporting.ObjectDataSource();
            ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
            // 
            // pageHeaderSection1
            // 
            this.pageHeaderSection1.Height = Telerik.Reporting.Drawing.Unit.Inch(1D);
            this.pageHeaderSection1.Name = "pageHeaderSection1";
            // 
            // detail
            // 
            this.detail.Height = Telerik.Reporting.Drawing.Unit.Inch(15.3D);
            this.detail.Items.AddRange(new Telerik.Reporting.ReportItemBase[] {
            this.graph1,
            this.graph2,
            this.graph3});
            this.detail.Name = "detail";
            // 
            // graph1
            // 
            graphGroup1.Groupings.Add(new Telerik.Reporting.Grouping("= Fields.reportMonth"));
            graphGroup1.Name = "reportMonthGroup";
            graphGroup1.Sortings.Add(new Telerik.Reporting.Sorting("= Fields.reportMonth", Telerik.Reporting.SortDirection.Asc));
            this.graph1.CategoryGroups.Add(graphGroup1);
            this.graph1.CoordinateSystems.Add(this.cartesianCoordinateSystem1);
            this.graph1.DataSource = this.objectDataSource2;
            this.graph1.Legend.IsInsidePlotArea = false;
            this.graph1.Legend.Position = Telerik.Reporting.GraphItemPosition.TopLeft;
            this.graph1.Legend.Style.LineColor = System.Drawing.Color.LightGray;
            this.graph1.Legend.Style.LineWidth = Telerik.Reporting.Drawing.Unit.Inch(0D);
            this.graph1.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0D), Telerik.Reporting.Drawing.Unit.Inch(0D));
            this.graph1.Name = "graph1";
            this.graph1.PlotAreaStyle.LineColor = System.Drawing.Color.LightGray;
            this.graph1.PlotAreaStyle.LineWidth = Telerik.Reporting.Drawing.Unit.Inch(0D);
            this.graph1.Series.Add(this.barSeries1);
            this.graph1.Series.Add(this.barSeries2);
            this.graph1.SeriesGroups.Add(graphGroup2);
            this.graph1.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(13.01D), Telerik.Reporting.Drawing.Unit.Inch(4.104D));
            this.graph1.Style.Padding.Bottom = Telerik.Reporting.Drawing.Unit.Pixel(10D);
            this.graph1.Style.Padding.Left = Telerik.Reporting.Drawing.Unit.Pixel(10D);
            this.graph1.Style.Padding.Right = Telerik.Reporting.Drawing.Unit.Pixel(10D);
            this.graph1.Style.Padding.Top = Telerik.Reporting.Drawing.Unit.Pixel(10D);
            graphTitle1.Position = Telerik.Reporting.GraphItemPosition.TopCenter;
            graphTitle1.Style.Color = System.Drawing.Color.DarkRed;
            graphTitle1.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(12D);
            graphTitle1.Style.LineColor = System.Drawing.Color.LightGray;
            graphTitle1.Style.LineWidth = Telerik.Reporting.Drawing.Unit.Inch(0D);
            graphTitle1.Text = "Encounter Volume Data";
            this.graph1.Titles.Add(graphTitle1);
            // 
            // cartesianCoordinateSystem1
            // 
            this.cartesianCoordinateSystem1.Name = "cartesianCoordinateSystem1";
            this.cartesianCoordinateSystem1.XAxis = this.graphAxis2;
            this.cartesianCoordinateSystem1.YAxis = this.graphAxis1;
            // 
            // graphAxis2
            // 
            this.graphAxis2.LabelAngle = 90;
            this.graphAxis2.LabelFormat = "{0:Y}";
            this.graphAxis2.MajorGridLineStyle.LineColor = System.Drawing.Color.LightGray;
            this.graphAxis2.MajorGridLineStyle.LineWidth = Telerik.Reporting.Drawing.Unit.Pixel(1D);
            this.graphAxis2.MinorGridLineStyle.LineColor = System.Drawing.Color.LightGray;
            this.graphAxis2.MinorGridLineStyle.LineWidth = Telerik.Reporting.Drawing.Unit.Pixel(1D);
            this.graphAxis2.MinorGridLineStyle.Visible = false;
            this.graphAxis2.Name = "graphAxis2";
            dateTimeScale1.BaseUnit = Telerik.Reporting.DateTimeScaleUnits.Months;
            dateTimeScale1.LabelUnit = Telerik.Reporting.DateTimeScaleUnits.Months;
            dateTimeScale1.SpacingSlotCount = 0.2D;
            this.graphAxis2.Scale = dateTimeScale1;
            this.graphAxis2.TitleStyle.Font.Size = Telerik.Reporting.Drawing.Unit.Point(12D);
            // 
            // graphAxis1
            // 
            this.graphAxis1.MajorGridLineStyle.LineColor = System.Drawing.Color.LightGray;
            this.graphAxis1.MajorGridLineStyle.LineWidth = Telerik.Reporting.Drawing.Unit.Pixel(1D);
            this.graphAxis1.MinorGridLineStyle.LineColor = System.Drawing.Color.LightGray;
            this.graphAxis1.MinorGridLineStyle.LineWidth = Telerik.Reporting.Drawing.Unit.Pixel(1D);
            this.graphAxis1.MinorGridLineStyle.Visible = false;
            this.graphAxis1.Name = "graphAxis1";
            this.graphAxis1.Scale = numericalScale1;
            // 
            // objectDataSource2
            // 
            this.objectDataSource2.DataSource = typeof(SafeUS.Reports.Models.DashboardReportModel.VolumeEncounter);
            this.objectDataSource2.Name = "objectDataSource2";
            // 
            // barSeries1
            // 
            this.barSeries1.ArrangeMode = Telerik.Reporting.GraphSeriesArrangeMode.Stacked;
            this.barSeries1.CategoryGroup = graphGroup1;
            this.barSeries1.CoordinateSystem = this.cartesianCoordinateSystem1;
            this.barSeries1.DataPointLabel = "= Sum(Fields.duplicateNonReal)";
            this.barSeries1.DataPointLabelAlignment = Telerik.Reporting.BarDataPointLabelAlignment.InsideEnd;
            this.barSeries1.DataPointLabelConnectorStyle.Color = System.Drawing.Color.Black;
            this.barSeries1.DataPointLabelStyle.Visible = true;
            this.barSeries1.DataPointStyle.LineWidth = Telerik.Reporting.Drawing.Unit.Inch(0D);
            this.barSeries1.DataPointStyle.Visible = true;
            this.barSeries1.LegendItem.MarkStyle.Font.Bold = false;
            this.barSeries1.LegendItem.MarkStyle.Font.Size = Telerik.Reporting.Drawing.Unit.Point(12D);
            this.barSeries1.LegendItem.Value = "Duplicate or Non Real";
            this.barSeries1.Name = "barSeries1";
            graphGroup2.Name = "seriesGroup";
            this.barSeries1.SeriesGroup = graphGroup2;
            this.barSeries1.ToolTip.Text = "= Sum(Fields.duplicateNonReal)";
            this.barSeries1.X = "= Fields.reportMonth";
            this.barSeries1.Y = "= Sum(Fields.duplicateNonReal)";
            // 
            // barSeries2
            // 
            this.barSeries2.ArrangeMode = Telerik.Reporting.GraphSeriesArrangeMode.Stacked;
            this.barSeries2.CategoryGroup = graphGroup1;
            this.barSeries2.CoordinateSystem = this.cartesianCoordinateSystem1;
            this.barSeries2.DataPointLabel = "= Sum(Fields.encounterCount)";
            this.barSeries2.DataPointLabelStyle.Visible = true;
            this.barSeries2.DataPointStyle.LineWidth = Telerik.Reporting.Drawing.Unit.Inch(0D);
            this.barSeries2.DataPointStyle.Visible = true;
            this.barSeries2.LegendItem.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(10D);
            this.barSeries2.LegendItem.Value = "Encounters";
            this.barSeries2.Name = "barSeries2";
            this.barSeries2.SeriesGroup = graphGroup2;
            this.barSeries2.ToolTip.Text = "= Sum(Fields.encounterCount)";
            this.barSeries2.X = "= Fields.reportMonth";
            this.barSeries2.Y = "= Sum(Fields.encounterCount)";
            // 
            // graph2
            // 
            toggleVisibilityAction1.DisplayExpandedMark = false;
            graphGroup4.Groupings.Add(new Telerik.Reporting.Grouping("= Fields.reportMonth.Month"));
            graphGroup4.Name = "reportMonthMonthGroup";
            graphGroup4.Sortings.Add(new Telerik.Reporting.Sorting("= Fields.reportMonth.Month", Telerik.Reporting.SortDirection.Asc));
            graphGroup4.Visible = false;
            toggleVisibilityAction1.Targets.AddRange(new Telerik.Reporting.IActionTarget[] {
            graphGroup4});
            graphGroup3.Action = toggleVisibilityAction1;
            graphGroup3.ChildGroups.Add(graphGroup4);
            graphGroup3.Groupings.Add(new Telerik.Reporting.Grouping("= Fields.reportMonth.Year"));
            graphGroup3.Name = "reportMonthYearGroup";
            graphGroup3.Sortings.Add(new Telerik.Reporting.Sorting("= Fields.reportMonth.Year", Telerik.Reporting.SortDirection.Asc));
            this.graph2.CategoryGroups.Add(graphGroup3);
            this.graph2.CoordinateSystems.Add(this.cartesianCoordinateSystem2);
            this.graph2.DataSource = this.objectDataSource3;
            this.graph2.Legend.Style.LineColor = System.Drawing.Color.LightGray;
            this.graph2.Legend.Style.LineWidth = Telerik.Reporting.Drawing.Unit.Inch(0D);
            this.graph2.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(0.01D), Telerik.Reporting.Drawing.Unit.Inch(4.125D));
            this.graph2.Name = "graph2";
            this.graph2.PlotAreaStyle.LineColor = System.Drawing.Color.LightGray;
            this.graph2.PlotAreaStyle.LineWidth = Telerik.Reporting.Drawing.Unit.Inch(0D);
            this.graph2.Series.Add(this.barSeries3);
            this.graph2.Series.Add(this.barSeries4);
            this.graph2.Series.Add(this.barSeries5);
            this.graph2.Series.Add(this.barSeries6);
            this.graph2.Series.Add(this.barSeries7);
            this.graph2.Series.Add(this.barSeries8);
            this.graph2.Series.Add(this.barSeries9);
            this.graph2.Series.Add(this.barSeries10);
            this.graph2.Series.Add(this.barSeries11);
            this.graph2.Series.Add(this.barSeries12);
            this.graph2.Series.Add(this.barSeries13);
            this.graph2.Series.Add(this.barSeries14);
            this.graph2.SeriesGroups.Add(graphGroup5);
            this.graph2.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(7.136D), Telerik.Reporting.Drawing.Unit.Inch(3.125D));
            this.graph2.Style.Padding.Bottom = Telerik.Reporting.Drawing.Unit.Pixel(10D);
            this.graph2.Style.Padding.Left = Telerik.Reporting.Drawing.Unit.Pixel(10D);
            this.graph2.Style.Padding.Right = Telerik.Reporting.Drawing.Unit.Pixel(10D);
            this.graph2.Style.Padding.Top = Telerik.Reporting.Drawing.Unit.Pixel(10D);
            graphTitle2.Position = Telerik.Reporting.GraphItemPosition.TopCenter;
            graphTitle2.Style.Color = System.Drawing.Color.DarkRed;
            graphTitle2.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(12D);
            graphTitle2.Style.LineColor = System.Drawing.Color.LightGray;
            graphTitle2.Style.LineWidth = Telerik.Reporting.Drawing.Unit.Inch(0D);
            graphTitle2.Text = "Volume by Reason";
            this.graph2.Titles.Add(graphTitle2);
            // 
            // cartesianCoordinateSystem2
            // 
            this.cartesianCoordinateSystem2.Name = "cartesianCoordinateSystem2";
            this.cartesianCoordinateSystem2.XAxis = this.graphAxis7;
            this.cartesianCoordinateSystem2.YAxis = this.graphAxis3;
            // 
            // graphAxis7
            // 
            this.graphAxis7.MajorGridLineStyle.LineColor = System.Drawing.Color.LightGray;
            this.graphAxis7.MajorGridLineStyle.LineWidth = Telerik.Reporting.Drawing.Unit.Pixel(1D);
            this.graphAxis7.MinorGridLineStyle.LineColor = System.Drawing.Color.LightGray;
            this.graphAxis7.MinorGridLineStyle.LineWidth = Telerik.Reporting.Drawing.Unit.Pixel(1D);
            this.graphAxis7.MinorGridLineStyle.Visible = false;
            this.graphAxis7.Name = "graphAxis7";
            this.graphAxis7.Scale = categoryScale1;
            // 
            // graphAxis3
            // 
            this.graphAxis3.MajorGridLineStyle.LineColor = System.Drawing.Color.LightGray;
            this.graphAxis3.MajorGridLineStyle.LineWidth = Telerik.Reporting.Drawing.Unit.Pixel(1D);
            this.graphAxis3.MinorGridLineStyle.LineColor = System.Drawing.Color.LightGray;
            this.graphAxis3.MinorGridLineStyle.LineWidth = Telerik.Reporting.Drawing.Unit.Pixel(1D);
            this.graphAxis3.MinorGridLineStyle.Visible = false;
            this.graphAxis3.Name = "graphAxis3";
            this.graphAxis3.Scale = numericalScale2;
            // 
            // objectDataSource3
            // 
            this.objectDataSource3.DataSource = typeof(SafeUS.Reports.Models.DashboardReportModel.VolumeByReason);
            this.objectDataSource3.Name = "objectDataSource3";
            // 
            // barSeries3
            // 
            this.barSeries3.ArrangeMode = Telerik.Reporting.GraphSeriesArrangeMode.Stacked;
            this.barSeries3.CategoryGroup = graphGroup4;
            this.barSeries3.CoordinateSystem = this.cartesianCoordinateSystem2;
            this.barSeries3.DataPointLabel = "= Sum(Fields.assigned)";
            this.barSeries3.DataPointLabelStyle.Visible = false;
            this.barSeries3.DataPointStyle.LineWidth = Telerik.Reporting.Drawing.Unit.Inch(0D);
            this.barSeries3.DataPointStyle.Visible = true;
            this.barSeries3.LegendItem.Value = "Assigned";
            this.barSeries3.Name = "barSeries3";
            graphGroup5.Name = "seriesGroup1";
            this.barSeries3.SeriesGroup = graphGroup5;
            this.barSeries3.ToolTip.Text = "= Sum(Fields.assigned)";
            this.barSeries3.Y = "= Sum(Fields.assigned)";
            // 
            // barSeries4
            // 
            this.barSeries4.ArrangeMode = Telerik.Reporting.GraphSeriesArrangeMode.Stacked;
            this.barSeries4.CategoryGroup = graphGroup4;
            this.barSeries4.CoordinateSystem = this.cartesianCoordinateSystem2;
            this.barSeries4.DataPointLabel = "= Sum(Fields.continueToMonitor)";
            this.barSeries4.DataPointLabelStyle.Visible = false;
            this.barSeries4.DataPointStyle.LineWidth = Telerik.Reporting.Drawing.Unit.Inch(0D);
            this.barSeries4.DataPointStyle.Visible = true;
            this.barSeries4.LegendItem.Value = "Continue to Monitor";
            this.barSeries4.Name = "barSeries4";
            this.barSeries4.SeriesGroup = graphGroup5;
            this.barSeries4.ToolTip.Text = "= Sum(Fields.continueToMonitor)";
            this.barSeries4.Y = "= Sum(Fields.continueToMonitor)";
            // 
            // barSeries5
            // 
            this.barSeries5.ArrangeMode = Telerik.Reporting.GraphSeriesArrangeMode.Stacked;
            this.barSeries5.CategoryGroup = graphGroup4;
            this.barSeries5.CoordinateSystem = this.cartesianCoordinateSystem2;
            this.barSeries5.DataPointLabel = "= Sum(Fields.duplicate)";
            this.barSeries5.DataPointLabelStyle.Visible = false;
            this.barSeries5.DataPointStyle.LineWidth = Telerik.Reporting.Drawing.Unit.Inch(0D);
            this.barSeries5.DataPointStyle.Visible = true;
            this.barSeries5.LegendItem.Value = "Duplicate";
            this.barSeries5.Name = "barSeries5";
            this.barSeries5.SeriesGroup = graphGroup5;
            this.barSeries5.ToolTip.Text = "= Sum(Fields.duplicate)";
            this.barSeries5.Y = "= Sum(Fields.duplicate)";
            // 
            // barSeries6
            // 
            this.barSeries6.ArrangeMode = Telerik.Reporting.GraphSeriesArrangeMode.Stacked;
            this.barSeries6.CategoryGroup = graphGroup4;
            this.barSeries6.CoordinateSystem = this.cartesianCoordinateSystem2;
            this.barSeries6.DataPointLabel = "= Sum(Fields.falseReport)";
            this.barSeries6.DataPointLabelStyle.Visible = false;
            this.barSeries6.DataPointStyle.LineWidth = Telerik.Reporting.Drawing.Unit.Inch(0D);
            this.barSeries6.DataPointStyle.Visible = true;
            this.barSeries6.LegendItem.Value = "False Report";
            this.barSeries6.Name = "barSeries6";
            this.barSeries6.SeriesGroup = graphGroup5;
            this.barSeries6.ToolTip.Text = "= Sum(Fields.falseReport)";
            this.barSeries6.Y = "= Sum(Fields.falseReport)";
            // 
            // barSeries7
            // 
            this.barSeries7.ArrangeMode = Telerik.Reporting.GraphSeriesArrangeMode.Stacked;
            this.barSeries7.CategoryGroup = graphGroup4;
            this.barSeries7.CoordinateSystem = this.cartesianCoordinateSystem2;
            this.barSeries7.DataPointLabel = "= Sum(Fields.helpful)";
            this.barSeries7.DataPointLabelStyle.Visible = false;
            this.barSeries7.DataPointStyle.LineWidth = Telerik.Reporting.Drawing.Unit.Inch(0D);
            this.barSeries7.DataPointStyle.Visible = true;
            this.barSeries7.LegendItem.Value = "Helpful";
            this.barSeries7.Name = "barSeries7";
            this.barSeries7.SeriesGroup = graphGroup5;
            this.barSeries7.ToolTip.Text = "= Sum(Fields.helpful)";
            this.barSeries7.Y = "= Sum(Fields.helpful)";
            // 
            // barSeries8
            // 
            this.barSeries8.ArrangeMode = Telerik.Reporting.GraphSeriesArrangeMode.Stacked;
            this.barSeries8.CategoryGroup = graphGroup4;
            this.barSeries8.CoordinateSystem = this.cartesianCoordinateSystem2;
            this.barSeries8.DataPointLabel = "= Sum(Fields.returned)";
            this.barSeries8.DataPointLabelStyle.Visible = false;
            this.barSeries8.DataPointStyle.LineWidth = Telerik.Reporting.Drawing.Unit.Inch(0D);
            this.barSeries8.DataPointStyle.Visible = true;
            this.barSeries8.LegendItem.Value = "Returned";
            this.barSeries8.Name = "barSeries8";
            this.barSeries8.SeriesGroup = graphGroup5;
            this.barSeries8.ToolTip.Text = "= Sum(Fields.returned)";
            this.barSeries8.Y = "= Sum(Fields.returned)";
            // 
            // barSeries9
            // 
            this.barSeries9.ArrangeMode = Telerik.Reporting.GraphSeriesArrangeMode.Stacked;
            this.barSeries9.CategoryGroup = graphGroup4;
            this.barSeries9.CoordinateSystem = this.cartesianCoordinateSystem2;
            this.barSeries9.DataPointLabel = "= Sum(Fields.notEnoughInformation)";
            this.barSeries9.DataPointLabelStyle.Visible = false;
            this.barSeries9.DataPointStyle.LineWidth = Telerik.Reporting.Drawing.Unit.Inch(0D);
            this.barSeries9.DataPointStyle.Visible = true;
            this.barSeries9.LegendItem.Value = "Not Enough Information";
            this.barSeries9.Name = "barSeries9";
            this.barSeries9.SeriesGroup = graphGroup5;
            this.barSeries9.ToolTip.Text = "= Sum(Fields.notEnoughInformation)";
            this.barSeries9.Y = "= Sum(Fields.notEnoughInformation)";
            // 
            // barSeries10
            // 
            this.barSeries10.ArrangeMode = Telerik.Reporting.GraphSeriesArrangeMode.Stacked;
            this.barSeries10.CategoryGroup = graphGroup4;
            this.barSeries10.CoordinateSystem = this.cartesianCoordinateSystem2;
            this.barSeries10.DataPointLabel = "= Sum(Fields.onGoingInvestigation)";
            this.barSeries10.DataPointLabelStyle.Visible = false;
            this.barSeries10.DataPointStyle.LineWidth = Telerik.Reporting.Drawing.Unit.Inch(0D);
            this.barSeries10.DataPointStyle.Visible = true;
            this.barSeries10.LegendItem.Value = "On-going Investigation";
            this.barSeries10.Name = "barSeries10";
            this.barSeries10.SeriesGroup = graphGroup5;
            this.barSeries10.ToolTip.Text = "= Sum(Fields.onGoingInvestigation)";
            this.barSeries10.Y = "= Sum(Fields.onGoingInvestigation)";
            // 
            // barSeries11
            // 
            this.barSeries11.ArrangeMode = Telerik.Reporting.GraphSeriesArrangeMode.Stacked;
            this.barSeries11.CategoryGroup = graphGroup4;
            this.barSeries11.CoordinateSystem = this.cartesianCoordinateSystem2;
            this.barSeries11.DataPointLabel = "= Sum(Fields.unAssigned)";
            this.barSeries11.DataPointLabelStyle.Visible = false;
            this.barSeries11.DataPointStyle.LineWidth = Telerik.Reporting.Drawing.Unit.Inch(0D);
            this.barSeries11.DataPointStyle.Visible = true;
            this.barSeries11.LegendItem.Value = "Unassigned";
            this.barSeries11.Name = "barSeries11";
            this.barSeries11.SeriesGroup = graphGroup5;
            this.barSeries11.ToolTip.Text = "= Sum(Fields.unAssigned)";
            this.barSeries11.Y = "= Sum(Fields.unAssigned)";
            // 
            // barSeries12
            // 
            this.barSeries12.ArrangeMode = Telerik.Reporting.GraphSeriesArrangeMode.Stacked;
            this.barSeries12.CategoryGroup = graphGroup4;
            this.barSeries12.CoordinateSystem = this.cartesianCoordinateSystem2;
            this.barSeries12.DataPointLabel = "= Sum(Fields.unFounded)";
            this.barSeries12.DataPointLabelStyle.Visible = false;
            this.barSeries12.DataPointStyle.LineWidth = Telerik.Reporting.Drawing.Unit.Inch(0D);
            this.barSeries12.DataPointStyle.Visible = true;
            this.barSeries12.LegendItem.Value = "Unfounded";
            this.barSeries12.Name = "barSeries12";
            this.barSeries12.SeriesGroup = graphGroup5;
            this.barSeries12.ToolTip.Text = "= Sum(Fields.unFounded)";
            this.barSeries12.Y = "= Sum(Fields.unFounded)";
            // 
            // barSeries13
            // 
            this.barSeries13.ArrangeMode = Telerik.Reporting.GraphSeriesArrangeMode.Stacked;
            this.barSeries13.CategoryGroup = graphGroup4;
            this.barSeries13.CoordinateSystem = this.cartesianCoordinateSystem2;
            this.barSeries13.DataPointLabel = "= Sum(Fields.unHelpful)";
            this.barSeries13.DataPointLabelStyle.Visible = false;
            this.barSeries13.DataPointStyle.LineWidth = Telerik.Reporting.Drawing.Unit.Inch(0D);
            this.barSeries13.DataPointStyle.Visible = true;
            this.barSeries13.LegendItem.Value = "Unhelpful";
            this.barSeries13.Name = "barSeries13";
            this.barSeries13.SeriesGroup = graphGroup5;
            this.barSeries13.ToolTip.Text = "= Sum(Fields.unHelpful)";
            this.barSeries13.Y = "= Sum(Fields.unHelpful)";
            // 
            // barSeries14
            // 
            this.barSeries14.ArrangeMode = Telerik.Reporting.GraphSeriesArrangeMode.Stacked;
            this.barSeries14.CategoryGroup = graphGroup4;
            this.barSeries14.CoordinateSystem = this.cartesianCoordinateSystem2;
            this.barSeries14.DataPointLabel = "= Sum(Fields.unFounded)";
            this.barSeries14.DataPointLabelStyle.Visible = false;
            this.barSeries14.DataPointStyle.LineWidth = Telerik.Reporting.Drawing.Unit.Inch(0D);
            this.barSeries14.DataPointStyle.Visible = true;
            this.barSeries14.LegendItem.Value = "Unfounded";
            this.barSeries14.Name = "barSeries14";
            this.barSeries14.SeriesGroup = graphGroup5;
            this.barSeries14.ToolTip.Text = "= Sum(Fields.unFounded)";
            this.barSeries14.Y = "= Sum(Fields.unFounded)";
            // 
            // graph3
            // 
            toggleVisibilityAction2.DisplayExpandedMark = false;
            graphGroup7.Groupings.Add(new Telerik.Reporting.Grouping("= Fields.reportMonth.Month"));
            graphGroup7.Name = "reportMonthMonthGroup1";
            graphGroup7.Sortings.Add(new Telerik.Reporting.Sorting("= Fields.reportMonth.Month", Telerik.Reporting.SortDirection.Asc));
            graphGroup7.Visible = false;
            toggleVisibilityAction2.Targets.AddRange(new Telerik.Reporting.IActionTarget[] {
            graphGroup7});
            graphGroup6.Action = toggleVisibilityAction2;
            graphGroup6.ChildGroups.Add(graphGroup7);
            graphGroup6.Groupings.Add(new Telerik.Reporting.Grouping("= Fields.reportMonth.Year"));
            graphGroup6.Name = "reportMonthYearGroup1";
            graphGroup6.Sortings.Add(new Telerik.Reporting.Sorting("= Fields.reportMonth.Year", Telerik.Reporting.SortDirection.Asc));
            this.graph3.CategoryGroups.Add(graphGroup6);
            this.graph3.CoordinateSystems.Add(this.cartesianCoordinateSystem3);
            this.graph3.DataSource = this.objectDataSource4;
            this.graph3.Legend.Style.LineColor = System.Drawing.Color.LightGray;
            this.graph3.Legend.Style.LineWidth = Telerik.Reporting.Drawing.Unit.Inch(0D);
            this.graph3.Location = new Telerik.Reporting.Drawing.PointU(Telerik.Reporting.Drawing.Unit.Inch(7.135D), Telerik.Reporting.Drawing.Unit.Inch(4.125D));
            this.graph3.Name = "graph3";
            this.graph3.PlotAreaStyle.LineColor = System.Drawing.Color.LightGray;
            this.graph3.PlotAreaStyle.LineWidth = Telerik.Reporting.Drawing.Unit.Inch(0D);
            this.graph3.Series.Add(this.barSeries15);
            this.graph3.Series.Add(this.barSeries16);
            this.graph3.SeriesGroups.Add(graphGroup8);
            this.graph3.Size = new Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(5.854D), Telerik.Reporting.Drawing.Unit.Inch(3.125D));
            this.graph3.Style.Padding.Bottom = Telerik.Reporting.Drawing.Unit.Pixel(10D);
            this.graph3.Style.Padding.Left = Telerik.Reporting.Drawing.Unit.Pixel(10D);
            this.graph3.Style.Padding.Right = Telerik.Reporting.Drawing.Unit.Pixel(10D);
            this.graph3.Style.Padding.Top = Telerik.Reporting.Drawing.Unit.Pixel(10D);
            graphTitle3.Position = Telerik.Reporting.GraphItemPosition.TopCenter;
            graphTitle3.Style.Color = System.Drawing.Color.DarkRed;
            graphTitle3.Style.Font.Size = Telerik.Reporting.Drawing.Unit.Point(12D);
            graphTitle3.Style.LineColor = System.Drawing.Color.LightGray;
            graphTitle3.Style.LineWidth = Telerik.Reporting.Drawing.Unit.Inch(0D);
            graphTitle3.Text = "Volume by Type";
            this.graph3.Titles.Add(graphTitle3);
            // 
            // cartesianCoordinateSystem3
            // 
            this.cartesianCoordinateSystem3.Name = "cartesianCoordinateSystem3";
            this.cartesianCoordinateSystem3.XAxis = this.graphAxis9;
            this.cartesianCoordinateSystem3.YAxis = this.graphAxis8;
            // 
            // graphAxis9
            // 
            this.graphAxis9.MajorGridLineStyle.LineColor = System.Drawing.Color.LightGray;
            this.graphAxis9.MajorGridLineStyle.LineWidth = Telerik.Reporting.Drawing.Unit.Pixel(1D);
            this.graphAxis9.MinorGridLineStyle.LineColor = System.Drawing.Color.LightGray;
            this.graphAxis9.MinorGridLineStyle.LineWidth = Telerik.Reporting.Drawing.Unit.Pixel(1D);
            this.graphAxis9.MinorGridLineStyle.Visible = false;
            this.graphAxis9.Name = "graphAxis9";
            this.graphAxis9.Scale = categoryScale2;
            // 
            // graphAxis8
            // 
            this.graphAxis8.MajorGridLineStyle.LineColor = System.Drawing.Color.LightGray;
            this.graphAxis8.MajorGridLineStyle.LineWidth = Telerik.Reporting.Drawing.Unit.Pixel(1D);
            this.graphAxis8.MinorGridLineStyle.LineColor = System.Drawing.Color.LightGray;
            this.graphAxis8.MinorGridLineStyle.LineWidth = Telerik.Reporting.Drawing.Unit.Pixel(1D);
            this.graphAxis8.MinorGridLineStyle.Visible = false;
            this.graphAxis8.Name = "graphAxis8";
            this.graphAxis8.Scale = numericalScale3;
            // 
            // objectDataSource4
            // 
            this.objectDataSource4.DataSource = typeof(SafeUS.Reports.Models.DashboardReportModel.VolumeByType);
            this.objectDataSource4.Name = "objectDataSource4";
            // 
            // barSeries15
            // 
            this.barSeries15.ArrangeMode = Telerik.Reporting.GraphSeriesArrangeMode.Stacked;
            this.barSeries15.CategoryGroup = graphGroup7;
            this.barSeries15.CoordinateSystem = this.cartesianCoordinateSystem3;
            this.barSeries15.DataPointLabel = "= Sum(Fields.chat)";
            this.barSeries15.DataPointLabelStyle.Visible = false;
            this.barSeries15.DataPointStyle.LineWidth = Telerik.Reporting.Drawing.Unit.Inch(0D);
            this.barSeries15.DataPointStyle.Visible = true;
            this.barSeries15.LegendItem.Value = "Chat";
            this.barSeries15.Name = "barSeries15";
            graphGroup8.Name = "seriesGroup2";
            this.barSeries15.SeriesGroup = graphGroup8;
            this.barSeries15.ToolTip.Text = "= Sum(Fields.chat)";
            this.barSeries15.Y = "= Sum(Fields.chat)";
            // 
            // barSeries16
            // 
            this.barSeries16.ArrangeMode = Telerik.Reporting.GraphSeriesArrangeMode.Stacked;
            this.barSeries16.CategoryGroup = graphGroup7;
            this.barSeries16.CoordinateSystem = this.cartesianCoordinateSystem3;
            this.barSeries16.DataPointLabel = "= Sum(Fields.tip)";
            this.barSeries16.DataPointLabelStyle.Visible = false;
            this.barSeries16.DataPointStyle.LineWidth = Telerik.Reporting.Drawing.Unit.Inch(0D);
            this.barSeries16.DataPointStyle.Visible = true;
            this.barSeries16.LegendItem.Value = "Tip";
            this.barSeries16.Name = "barSeries16";
            this.barSeries16.SeriesGroup = graphGroup8;
            this.barSeries16.ToolTip.Text = "= Sum(Fields.tip)";
            this.barSeries16.Y = "= Sum(Fields.tip)";
            // 
            // graphAxis5
            // 
            this.graphAxis5.MajorGridLineStyle.LineColor = System.Drawing.Color.LightGray;
            this.graphAxis5.MajorGridLineStyle.LineWidth = Telerik.Reporting.Drawing.Unit.Pixel(1D);
            this.graphAxis5.MinorGridLineStyle.LineColor = System.Drawing.Color.LightGray;
            this.graphAxis5.MinorGridLineStyle.LineWidth = Telerik.Reporting.Drawing.Unit.Pixel(1D);
            this.graphAxis5.MinorGridLineStyle.Visible = false;
            this.graphAxis5.Name = "graphAxis5";
            this.graphAxis5.Scale = categoryScale3;
            // 
            // graphAxis4
            // 
            this.graphAxis4.LabelFormat = "{0}";
            this.graphAxis4.MajorGridLineStyle.Font.Size = Telerik.Reporting.Drawing.Unit.Point(12D);
            this.graphAxis4.MajorGridLineStyle.LineColor = System.Drawing.Color.LightGray;
            this.graphAxis4.MajorGridLineStyle.LineWidth = Telerik.Reporting.Drawing.Unit.Pixel(1D);
            this.graphAxis4.MinorGridLineStyle.Font.Italic = false;
            this.graphAxis4.MinorGridLineStyle.Font.Size = Telerik.Reporting.Drawing.Unit.Point(12D);
            this.graphAxis4.MinorGridLineStyle.LineColor = System.Drawing.Color.LightGray;
            this.graphAxis4.MinorGridLineStyle.LineWidth = Telerik.Reporting.Drawing.Unit.Pixel(1D);
            this.graphAxis4.MinorGridLineStyle.Visible = false;
            this.graphAxis4.Name = "graphAxis4";
            this.graphAxis4.Scale = categoryScale4;
            this.graphAxis4.TitleStyle.Font.Size = Telerik.Reporting.Drawing.Unit.Point(12D);
            // 
            // pageFooterSection1
            // 
            this.pageFooterSection1.Height = Telerik.Reporting.Drawing.Unit.Inch(1D);
            this.pageFooterSection1.Name = "pageFooterSection1";
            // 
            // graphAxis6
            // 
            this.graphAxis6.MajorGridLineStyle.LineColor = System.Drawing.Color.LightGray;
            this.graphAxis6.MajorGridLineStyle.LineWidth = Telerik.Reporting.Drawing.Unit.Pixel(1D);
            this.graphAxis6.MinorGridLineStyle.LineColor = System.Drawing.Color.LightGray;
            this.graphAxis6.MinorGridLineStyle.LineWidth = Telerik.Reporting.Drawing.Unit.Pixel(1D);
            this.graphAxis6.MinorGridLineStyle.Visible = false;
            this.graphAxis6.Name = "GraphAxis1";
            this.graphAxis6.Scale = numericalScale4;
            // 
            // objectDataSource1
            // 
            this.objectDataSource1.DataSource = typeof(SafeUS.Reports.Models.EmployeeReportModel);
            this.objectDataSource1.Name = "objectDataSource1";
            // 
            // DashboardReport
            // 
            this.Items.AddRange(new Telerik.Reporting.ReportItemBase[] {
            this.pageHeaderSection1,
            this.detail,
            this.pageFooterSection1});
            this.Name = "AllEncounters";
            this.PageSettings.Margins = new Telerik.Reporting.Drawing.MarginsU(Telerik.Reporting.Drawing.Unit.Inch(1D), Telerik.Reporting.Drawing.Unit.Inch(1D), Telerik.Reporting.Drawing.Unit.Inch(1D), Telerik.Reporting.Drawing.Unit.Inch(1D));
            this.PageSettings.PaperKind = System.Drawing.Printing.PaperKind.Letter;
            styleRule1.Selectors.AddRange(new Telerik.Reporting.Drawing.ISelector[] {
            new Telerik.Reporting.Drawing.TypeSelector(typeof(Telerik.Reporting.TextItemBase)),
            new Telerik.Reporting.Drawing.TypeSelector(typeof(Telerik.Reporting.HtmlTextBox))});
            styleRule1.Style.Padding.Left = Telerik.Reporting.Drawing.Unit.Point(2D);
            styleRule1.Style.Padding.Right = Telerik.Reporting.Drawing.Unit.Point(2D);
            this.StyleSheet.AddRange(new Telerik.Reporting.Drawing.StyleRule[] {
            styleRule1});
            this.Width = Telerik.Reporting.Drawing.Unit.Inch(15.5D);
            ((System.ComponentModel.ISupportInitialize)(this)).EndInit();

        }
        #endregion

        private Telerik.Reporting.PageHeaderSection pageHeaderSection1;
        private Telerik.Reporting.DetailSection detail;
        private Telerik.Reporting.PageFooterSection pageFooterSection1;
        private Telerik.Reporting.ObjectDataSource objectDataSource1;
        private Telerik.Reporting.GraphAxis graphAxis4;
        private Telerik.Reporting.GraphAxis graphAxis5;
        private Telerik.Reporting.GraphAxis graphAxis6;
        private Telerik.Reporting.ObjectDataSource objectDataSource2;
        private Telerik.Reporting.Graph graph1;
        private Telerik.Reporting.CartesianCoordinateSystem cartesianCoordinateSystem1;
        private Telerik.Reporting.GraphAxis graphAxis2;
        private Telerik.Reporting.GraphAxis graphAxis1;
        private Telerik.Reporting.BarSeries barSeries1;
        private Telerik.Reporting.BarSeries barSeries2;
        private Telerik.Reporting.Graph graph2;
        private Telerik.Reporting.CartesianCoordinateSystem cartesianCoordinateSystem2;
        private Telerik.Reporting.GraphAxis graphAxis7;
        private Telerik.Reporting.GraphAxis graphAxis3;
        private Telerik.Reporting.ObjectDataSource objectDataSource3;
        private Telerik.Reporting.BarSeries barSeries3;
        private Telerik.Reporting.BarSeries barSeries4;
        private Telerik.Reporting.BarSeries barSeries5;
        private Telerik.Reporting.BarSeries barSeries6;
        private Telerik.Reporting.BarSeries barSeries7;
        private Telerik.Reporting.BarSeries barSeries8;
        private Telerik.Reporting.BarSeries barSeries9;
        private Telerik.Reporting.BarSeries barSeries10;
        private Telerik.Reporting.BarSeries barSeries11;
        private Telerik.Reporting.BarSeries barSeries12;
        private Telerik.Reporting.BarSeries barSeries13;
        private Telerik.Reporting.BarSeries barSeries14;
        private Telerik.Reporting.ObjectDataSource objectDataSource4;
        private Telerik.Reporting.Graph graph3;
        private Telerik.Reporting.CartesianCoordinateSystem cartesianCoordinateSystem3;
        private Telerik.Reporting.GraphAxis graphAxis9;
        private Telerik.Reporting.GraphAxis graphAxis8;
        private Telerik.Reporting.BarSeries barSeries15;
        private Telerik.Reporting.BarSeries barSeries16;
    }
}

0
Martin Ivanov
Telerik team
answered on 15 Jun 2020, 10:15 AM

Hello Rich,

Thank you for the additional information. 

The provided code is part of the Telerik Reporting product. May I ask you to post your question in the Reporting forum or the open a support ticket with its Product set to Reporting?

Regards,
Martin Ivanov
Progress Telerik

Progress is here for your business, like always. Read more about the measures we are taking to ensure business continuity and help fight the COVID-19 pandemic.
Our thoughts here at Progress are with those affected by the outbreak.
Tags
BarCode
Asked by
Rich Schone
Top achievements
Rank 1
Veteran
Answers by
Rich Schone
Top achievements
Rank 1
Veteran
Martin Ivanov
Telerik team
Share this question
or