public ChartDataPoint(Chart owner, int rowIndex, int colIndex)
 {
     this.m_owner            = owner;
     this.m_rowIndex         = rowIndex;
     this.m_columnIndex      = colIndex;
     this.m_dataPointValues  = null;
     this.m_actionInfo       = null;
     this.m_customProperties = null;
 }
Beispiel #2
0
 public ChartDataPointValuesInstance(ChartDataPointValues chartDataPointValuesDef)
     : base(chartDataPointValuesDef.ChartDataPoint)
 {
     this.m_chartDataPointValuesDef = chartDataPointValuesDef;
 }