Esempio n. 1
0
        public GraphAxes(GraphProperties graphProperties)
        {
            this.graphProperties = graphProperties;

            //Set Label colour.
            this.SetColour(Brushes.Black);
        }
Esempio n. 2
0
        public GraphGrid(GraphProperties graphProperties)
        {
            this.graphProperties = graphProperties;

            //Set Label colour.
            this.SetColour(Brushes.LightGray);
        }
Esempio n. 3
0
        public void Update(GraphProperties graphProperties)
        {
            this.graphProperties = graphProperties;

            YAxisTitleLabel();
            YAxisLabels();
            XAxisTitleLabel();
            XAxisLabels();
        }
Esempio n. 4
0
        public void Update(GraphProperties graphProperties)
        {
            this.graphProperties = graphProperties;

            Grid();
        }