示例#1
0
 /// <summary>
 /// Adds a new chart to the header or footer.
 /// </summary>
 public Chart AddChart()
 {
     return(Elements.AddChart());
 }
示例#2
0
 ///<summary> Adds a new chart to the cell. </summary>
 public Chart AddChart() =>
 Elements.AddChart();
示例#3
0
 /// <summary>
 /// Adds a new chart with the specified type to the header or footer.
 /// </summary>
 public Chart AddChart(ChartType type)
 {
     return(Elements.AddChart(type));
 }
示例#4
0
 ///<summary> Adds a new chart with the specified type to the cell. </summary>
 public Chart AddChart(ChartType type) =>
 Elements.AddChart(type);