Пример #1
0
 private static void InitChartComponentTheme(ChartTheme theme)
 {
     theme.common     = new ComponentTheme(theme.theme);
     theme.title      = new TitleTheme(theme.theme);
     theme.subTitle   = new SubTitleTheme(theme.theme);
     theme.legend     = new LegendTheme(theme.theme);
     theme.axis       = new AxisTheme(theme.theme);
     theme.radiusAxis = new RadiusAxisTheme(theme.theme);
     theme.angleAxis  = new AngleAxisTheme(theme.theme);
     theme.polar      = new PolarAxisTheme(theme.theme);
     theme.gauge      = new GaugeAxisTheme(theme.theme);
     theme.radar      = new RadarAxisTheme(theme.theme);
     theme.tooltip    = new TooltipTheme(theme.theme);
     theme.dataZoom   = new DataZoomTheme(theme.theme);
     theme.visualMap  = new VisualMapTheme(theme.theme);
     theme.serie      = new SerieTheme(theme.theme);
     theme.SetDefaultFont();
 }