/// <summary>
        /// Sets the minor tick type.
        /// </summary>
        /// <param name="minorTickType">The minor tick type.</param>
        /// <example>
        /// <code lang="CS">
        /// &lt;%= Html.Telerik().Chart(Model)
        ///             .Name("Chart")
        ///             .ValueAxis(a => a.Numeric().MinorTickType(ChartAxisTickType.Inside))
        /// %&gt;
        /// </code>
        /// </example>
        public TAxisBuilder MinorTickType(ChartAxisTickType minorTickType)
        {
            Axis.MinorTickType = minorTickType;

            return(this as TAxisBuilder);
        }
        /// <summary>
        /// Sets the major tick type.
        /// </summary>
        /// <param name="majorTickType">The major tick type.</param>
        /// <example>
        /// <code lang="CS">
        /// &lt;%= Html.Telerik().Chart(Model)
        ///             .Name("Chart")
        ///             .ValueAxis(a => a.Numeric().MajorTickType(ChartAxisTickType.Inside))
        /// %&gt;
        /// </code>
        /// </example>
        public TAxisBuilder MajorTickType(ChartAxisTickType majorTickType)
        {
            Axis.MajorTickType = majorTickType;

            return(this as TAxisBuilder);
        }
        public ChartNumericAxisBuilder MinorTickType(ChartAxisTickType minorTickType)
        {
            LegacyBuilder.MinorTickType(minorTickType);

            return(LegacyBuilder);
        }