Beispiel #1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="Chart"/> class.
 /// </summary>
 /// <param name="title">The title.</param>
 /// <param name="legendX">The legend X.</param>
 /// <param name="legendY">The legend Y.</param>
 /// <param name="toolTip">The tool tip.</param>
 /// <param name="chart">The chart.</param>
 public Chart(ChartStylableTextElement title, ChartStylableTextElement legendX, ChartStylableTextElement legendY, string toolTip, ChartBase chart)
     : this(title, legendX, legendY, toolTip, new List <ChartBase>() { chart }, 10, 10)
 {
 }
Beispiel #2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="Chart"/> class.
 /// </summary>
 /// <param name="title">The title.</param>
 /// <param name="toolTip">The tool tip.</param>
 /// <param name="chart">The chart.</param>
 public Chart(ChartStylableTextElement title, string toolTip, ChartBase chart)
     : this(title, null, null, toolTip, new List <ChartBase>() { chart }, 10, 10)
 {
 }