Chart constructor

Chart(
  1. Worksheet sheet
)

Create an instances of Chart class.

Implementation

Chart(Worksheet sheet) {
  _worksheet = sheet;
  _createChartTitle();
  hasLegend = true;
}