Exemple #1
0
        public SCChart AddAxisCustomLabel(ChartAxisType axisType, string axisName, string name, object value,
                                          AxisCustomLabelOptions options = null)
        {
            options ??= new AxisCustomLabelOptions();
            options.SetupXtraChartCustomLabel(this, axisType, axisName, name, value);

            return(this);
        }
Exemple #2
0
 public SCChart AddAxisCustomLabel(ChartAxisType axisType, string name, object value,
                                   AxisCustomLabelOptions options = null) =>
 AddAxisCustomLabel(axisType, null, name, value, options);