Esempio n. 1
0
        private void UpdateBarProperty(IATKProperty property)
        {
            switch (property)
            {
            case IATKProperty.NumXBins:
                targetBarchart.SetNumXBins(targetBarchart.NumXBins);
                break;

            case IATKProperty.NumZBins:
                targetBarchart.SetNumZBins(targetBarchart.NumZBins);
                break;

            case IATKProperty.BarAggregation:
                targetBarchart.SetBarAggregation(targetBarchart.BarAggregation);
                break;
            }
        }