/// <summary>
 /// Creates a new instance of <see cref="ConfigBase"/>
 /// </summary>
 /// <param name="chartType">The chartType this config is for</param>
 protected ConfigBase(ChartTypes chartType)
 {
     Type = chartType;
 }
 protected ChartConfigBase(ChartTypes chartType)
 {
     ChartType = chartType;
     Type      = chartType.ToString();
 }