Exemple #1
0
 public CurveChartTemplate()
 {
     Curves           = new List <CurveTemplate>();
     FontAndSize      = new ChartFontAndSizeSettings();
     ChartSettings    = new ChartSettings();
     _isDefault       = false;
     _name            = string.Empty;
     _previewSettings = false;
 }
 public static ChartFontAndSizeSettings WithTitleSize(this ChartFontAndSizeSettings chartFontAndSizeSettings, int titleSize)
 {
     chartFontAndSizeSettings.Fonts.TitleSize = titleSize;
     return(chartFontAndSizeSettings);
 }
 public static ChartFontAndSizeSettings ForParameterIdentificationFeedback(this ChartFontAndSizeSettings chartFontAndSizeSettings)
 {
     return(chartFontAndSizeSettings.WithTitleSize(Constants.ChartFontOptions.DEFAULT_FONT_SIZE_TITLE_FOR_PARAMETER_IDENTIFICATION_FEEDBACK));
 }