Example #1
0
        protected VtkGraphViewModel(IUnityContainer container, IGuiThreadDispatchService dispatchService = null, IEventAggregator events = null) : base(container, dispatchService, events)
        {
            _graphWindow = new VtkGraphWindowControl();

            _markerLayerRenderer = vtkRenderer.New();
            _markerLayerRenderer.SetInteractive(0);
            _markerLayerRenderer.SetLayer(1);

            this.Initialize();
        }
Example #2
0
 public VtkChartXyViewModel(IUnityContainer container, IGuiThreadDispatchService dispatchService = null, IEventAggregator events = null)
     : base(container, dispatchService, events)
 {
     Create();
 }
Example #3
0
 protected VtkChartViewModel(IUnityContainer container, IGuiThreadDispatchService dispatchService = null, IEventAggregator events = null)
     : base(container, dispatchService, events)
 {
 }