protected override void CopyFrom(PlotItem fromb)
    {
      base.CopyFrom(fromb);

      XYColumnPlotItem from = fromb as XYColumnPlotItem;
      if (null != from)
      {
        this.Data = (XYColumnPlotData)from.Data.Clone(); // also wires the event
      }
    }
    protected override void CopyFrom(PlotItem fromb)
    {
      base.CopyFrom(fromb);

      G2DPlotItem from = fromb as G2DPlotItem;
      if (from != null)
      {
        this.Style = from.Style.Clone();
      }
    }
Exemple #3
0
 protected virtual void CopyFrom(PlotItem from)
 {
   this._parent = from._parent;
 }
Exemple #4
0
 protected virtual void CopyFrom(PlotItem from)
 {
     this._parent = from._parent;
 }
 protected override void CopyFrom(PlotItem fromb)
 {
   base.CopyFrom(fromb);
   XYFunctionPlotItem from = fromb as XYFunctionPlotItem;
   if (from != null)
   {
     this.Data = from.Data;
   }
 }
    protected override void CopyFrom(PlotItem fromb)
    {
      base.CopyFrom(fromb);

      DensityImagePlotItem from = fromb as DensityImagePlotItem;
      if (null != from)
      {
        this.Data = from.Data;   // also wires the event
        this.Style = from.Style; // also wires the event
      }
    }