public override void Paint(Graphics g, IPlotArea layer)
 {
     if (null != this.m_PlotStyle)
     {
         m_PlotStyle.Paint(g, layer, m_PlotAssociation);
     }
 }
Exemple #2
0
 public override void Paint(Graphics g, IPaintContext context, IPlotArea layer, IGPlotItem previousPlotItem, IGPlotItem nextPlotItem)
 {
     if (null != _plotStyle)
     {
         _plotStyle.Paint(g, layer, _plotData);
     }
 }