We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eb5e081 commit 09a6a84Copy full SHA for 09a6a84
test/chart.test.ts
@@ -43,7 +43,8 @@ describe("xlsx-wasm test", () => {
43
44
const chart = new Chart(ChartType.Stock);
45
const chartFont = new ChartFont().setName("Meiryo UI");
46
- const chartDataLabel = new ChartDataLabel().setFont(chartFont).showValue().setPosition(ChartDataLabelPosition.Left);
+ const chartDataLabel = new ChartDataLabel().setFont(chartFont);
47
+ chartDataLabel.showValue().setPosition(ChartDataLabelPosition.Left);
48
49
const chartSeries1 = new ChartSeries();
50
const chartMarker1 = new ChartMarker().setType(ChartMarkerType.Circle).setSize(10);
0 commit comments