/// <summary>
 /// Sets the title position
 /// </summary>
 /// <param name="position">The title position.</param>
 /// <example>
 /// <code lang="CS">
 /// &lt;% Html.Telerik().Chart()
 ///            .Name("Chart")
 ///            .Title(title => title.Position(ChartTitlePosition.Bottom))
 ///            .Render();
 /// %&gt;
 /// </code>
 /// </example>        
 public ChartTitleBuilder Position(ChartTitlePosition position)
 {
     title.Position = position;
     return this;
 }
 /// <summary>
 /// Sets the title position
 /// </summary>
 /// <param name="position">The title position.</param>
 /// <example>
 /// <code lang="CS">
 /// &lt;% Html.Telerik().Chart()
 ///            .Name("Chart")
 ///            .Title(title => title.Position(ChartTitlePosition.Bottom))
 ///            .Render();
 /// %&gt;
 /// </code>
 /// </example>
 public ChartTitleBuilder Position(ChartTitlePosition position)
 {
     title.Position = position;
     return(this);
 }