Ejemplo n.º 1
0
 /// <summary>
 /// Initializes a new instance of the Interpolator class.
 /// </summary>
 protected Interpolator()
 {
     InterpolationMode = InterpolationMode.LeafNodesOnly;
     ActualDataMinimum = double.PositiveInfinity;
     ActualDataMaximum = double.NegativeInfinity;
     _helper           = new BindingExtractor();
 }
Ejemplo n.º 2
0
        /// <summary>
        /// Initializes a new instance of the TreeMap class.
        /// </summary>
        public TreeMap()
        {
            _helper = new BindingExtractor();

            DefaultStyleKey = typeof(TreeMap);

            SetValue(InterpolatorsProperty, new ObservableCollection <Interpolator>());
            (Interpolators as ObservableCollection <Interpolator>).CollectionChanged +=
                new NotifyCollectionChangedEventHandler(OnInterpolatorsCollectionChanged);
        }
Ejemplo n.º 3
0
        /// <summary>
        /// Initializes a new instance of the TreeMap class.
        /// </summary>
        public TreeMap()
        {
            _helper = new BindingExtractor();

            DefaultStyleKey = typeof(TreeMap);

            SetValue(InterpolatorsProperty, new ObservableCollection<Interpolator>());
            (Interpolators as ObservableCollection<Interpolator>).CollectionChanged += 
                new NotifyCollectionChangedEventHandler(OnInterpolatorsCollectionChanged);
        }
Ejemplo n.º 4
0
 /// <summary>
 /// Initializes a new instance of the Interpolator class.
 /// </summary>
 protected Interpolator()
 {
     InterpolationMode = InterpolationMode.LeafNodesOnly;
     ActualDataMinimum = double.PositiveInfinity;
     ActualDataMaximum = double.NegativeInfinity;
     _helper = new BindingExtractor();
 }