public BarChartVisual(RectTransform graphContainer, Color barColor, float barWidthMultiplier, Window_Graph_Object windowGraph)
 {
     this.graphContainer     = graphContainer;
     this.barColor           = barColor;
     this.barWidthMultiplier = barWidthMultiplier;
     this.windowGraph        = windowGraph;
 }
 public LineGraphVisual(RectTransform graphContainer, Sprite dotSprite, Color dotColor, Color dotConnectionColor, Window_Graph_Object windowGraph)
 {
     this.graphContainer       = graphContainer;
     this.dotSprite            = dotSprite;
     this.dotColor             = dotColor;
     this.dotConnectionColor   = dotConnectionColor;
     this.windowGraph          = windowGraph;
     lastLineGraphVisualObject = null;
 }
            public LineGraphVisualObject(GameObject dotGameObject, GameObject dotConnectionGameObject, LineGraphVisualObject lastVisualObject, Window_Graph_Object windowGraph)
            {
                this.dotGameObject           = dotGameObject;
                this.dotConnectionGameObject = dotConnectionGameObject;
                this.lastVisualObject        = lastVisualObject;
                this.windowGraph             = windowGraph;

                if (lastVisualObject != null)
                {
                    lastVisualObject.OnChangedGraphVisualObjectInfo += LastVisualObject_OnChangedGraphVisualObjectInfo;
                }
            }
 public BarChartVisualObject(GameObject barGameObject, float barWidthMultiplier, Window_Graph_Object windowGraph)
 {
     this.barGameObject      = barGameObject;
     this.barWidthMultiplier = barWidthMultiplier;
     this.windowGraph        = windowGraph;
 }