Ejemplo n.º 1
0
        /// <summary>
        /// Configures the style for scatterLine series.
        /// </summary>
        /// <param name="style">The style. The default is normal.</param>
        /// <example>
        /// <code lang="CS">
        /// &lt;%= Html.Kendo().Chart()
        ///            .Name("Chart")
        ///            .Series(series => series
        ///                .PolarLine(s => s.x, s => s.y)
        ///                .Style(ChartPolarLineStyle.Smooth);
        ///            )
        /// %&gt;
        /// </code>
        /// </example>
        public ChartPolarLineSeriesBuilder <T> Style(ChartPolarLineStyle style)
        {
            Series.Style = style;

            return(this);
        }
Ejemplo n.º 2
0
 protected override void Initialize()
 {
     base.Initialize();
     Style = ChartPolarLineStyle.Normal;
 }