Exemplo n.º 1
0
        public static void ValueChangedQuant(DependencyObject d, DependencyPropertyChangedEventArgs e)
        {
            CoverageChart cc = d as CoverageChart;
            KeyValuePair <string, Dictionary <string, double> > w = (KeyValuePair <string, Dictionary <string, double> >)e.NewValue;

            cc.PlotQuant(w);
        }
Exemplo n.º 2
0
        public static void ValueChanged(DependencyObject d, DependencyPropertyChangedEventArgs e)
        {
            CoverageChart cc = d as CoverageChart;
            KeyValuePair <string, List <string> > w = (KeyValuePair <string, List <string> >)e.NewValue;

            cc.Plot(w);
        }