/// <summary> /// Adds a new chart to the header or footer. /// </summary> public Chart AddChart() { return(Elements.AddChart()); }
///<summary> Adds a new chart to the cell. </summary> public Chart AddChart() => Elements.AddChart();
/// <summary> /// Adds a new chart with the specified type to the header or footer. /// </summary> public Chart AddChart(ChartType type) { return(Elements.AddChart(type)); }
///<summary> Adds a new chart with the specified type to the cell. </summary> public Chart AddChart(ChartType type) => Elements.AddChart(type);