Charts not under the 1st tab of the tabset don't show up in a Note

At this moment, charts not under the 1st tab of the tabset don’t show up in a Note. You can workaround this by the following steps.

• Specify the chart width and height in pixels.
• Surround the chart syntax with a “div” HTML element and set margin-left:50% to it.

Here is a sample markdown following.

## Some tab sets {.tabset}
### First Tab

### Second Tab

### Thrid Tab

<div style="margin-left:50%">
```{exploratory width="600px", height="400px"}
/1111_Employee_Data_copy_1/viz/Chart-11-lCU9fNt4
```
</div>

1 Like