Пример #1
0
        public GraphAxes(GraphProperties graphProperties)
        {
            this.graphProperties = graphProperties;

            //Set Label colour.
            this.SetColour(Brushes.Black);
        }
Пример #2
0
        public GraphGrid(GraphProperties graphProperties)
        {
            this.graphProperties = graphProperties;

            //Set Label colour.
            this.SetColour(Brushes.LightGray);
        }
Пример #3
0
        public void Update(GraphProperties graphProperties)
        {
            this.graphProperties = graphProperties;

            YAxisTitleLabel();
            YAxisLabels();
            XAxisTitleLabel();
            XAxisLabels();
        }
Пример #4
0
        public void Update(GraphProperties graphProperties)
        {
            this.graphProperties = graphProperties;

            Grid();
        }