File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed
Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -15,8 +15,8 @@ export default class ModifyChartHelper {
1515 */
1616 static setChartData = ( data : ChartData ) => (
1717 element : XMLDocument | Element ,
18- chart : Document ,
19- workbook : Workbook ,
18+ chart ? : Document ,
19+ workbook ? : Workbook ,
2020 ) : void => {
2121 const slots = [ ] as ChartSlot [ ] ;
2222 data . series . forEach ( ( series : ChartSeries , s : number ) => {
@@ -40,8 +40,8 @@ export default class ModifyChartHelper {
4040 */
4141 static setChartVerticalLines = ( data : ChartData ) => (
4242 element : XMLDocument | Element ,
43- chart : Document ,
44- workbook : Workbook ,
43+ chart ? : Document ,
44+ workbook ? : Workbook ,
4545 ) : void => {
4646 const slots = [ ] as ChartSlot [ ] ;
4747
@@ -69,8 +69,8 @@ export default class ModifyChartHelper {
6969 */
7070 static setChartBubbles = ( data : ChartData ) => (
7171 element : XMLDocument | Element ,
72- chart : Document ,
73- workbook : Workbook ,
72+ chart ? : Document ,
73+ workbook ? : Workbook ,
7474 ) : void => {
7575 const slots = [ ] as ChartSlot [ ] ;
7676
You can’t perform that action at this time.
0 commit comments