Example #1
0
 public InternalChartSeries GetByName(string seriesName)
 {
     for (int i = 0; i < this.Count; i++)
     {
         InternalChartSeries internalChartSeries = (InternalChartSeries)((ReportElementCollectionBase <ChartSeries>) this)[i];
         if (AspNetCore.ReportingServices.ReportProcessing.ReportProcessing.CompareWithInvariantCulture(seriesName, internalChartSeries.Name, false) == 0)
         {
             return(internalChartSeries);
         }
     }
     return(null);
 }
 public ChartSmartLabel(InternalChartSeries chartSeries, AspNetCore.ReportingServices.ReportIntermediateFormat.ChartSmartLabel chartSmartLabelDef, Chart chart)
 {
     this.m_chartSeries        = chartSeries;
     this.m_chartSmartLabelDef = chartSmartLabelDef;
     this.m_chart = chart;
 }
Example #3
0
 public ChartNoMoveDirections(InternalChartSeries chartSeries, AspNetCore.ReportingServices.ReportIntermediateFormat.ChartNoMoveDirections chartNoMoveDirectionsDef, Chart chart)
 {
     this.m_chartSeries = chartSeries;
     this.m_chartNoMoveDirectionsDef = chartNoMoveDirectionsDef;
     this.m_chart = chart;
 }
 public ChartEmptyPoints(InternalChartSeries chartSeries, AspNetCore.ReportingServices.ReportIntermediateFormat.ChartEmptyPoints chartEmptyPointsDef, Chart chart)
 {
     this.m_chartEmptyPointsDef = chartEmptyPointsDef;
     this.m_chart       = chart;
     this.m_chartSeries = chartSeries;
 }
 public ChartItemInLegend(InternalChartSeries chartSeries, AspNetCore.ReportingServices.ReportIntermediateFormat.ChartItemInLegend chartItemInLegendDef, Chart chart)
 {
     this.m_chartSeries          = chartSeries;
     this.m_chartItemInLegendDef = chartItemInLegendDef;
     this.m_chart = chart;
 }
 public ChartMarker(InternalChartSeries chartSeries, AspNetCore.ReportingServices.ReportIntermediateFormat.ChartMarker markerDef, Chart chart)
     : this(markerDef, chart)
 {
     this.m_chartSeries = chartSeries;
 }