Exemple #1
0
 public ChartAxis GetByName(string axisName)
 {
     for (int i = 0; i < this.Count; i++)
     {
         AspNetCore.ReportingServices.ReportIntermediateFormat.ChartAxis chartAxis = this.m_isCategory ? this.m_chartArea.ChartAreaDef.CategoryAxes[i] : this.m_chartArea.ChartAreaDef.ValueAxes[i];
         if (string.CompareOrdinal(axisName, chartAxis.AxisName) == 0)
         {
             return(base[i]);
         }
     }
     return(null);
 }
Exemple #2
0
 public ChartAxis(AspNetCore.ReportingServices.ReportIntermediateFormat.ChartAxis axisDef, Chart chart)
 {
     this.m_axisDef = axisDef;
     this.m_chart   = chart;
 }