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