private Vector2 GetStartPoint(BarCategory category)
 {
     return uiposition + new Vector2(44 + (int)category * 105, 32.0f);
 }
 private void AddDataPoint(BarCategory category, float value, Texture2D graphTexture)
 {
     data[(int)category].Add(new BarEntry(value, graphTexture));
 }