Is there a way to update the column header in Tabulator using inline style when trying to avoid ellipsis as the column size is reduced?
<VueTabulator ref="tabulator" v-model="receipts" :options="options" style="white-space: normal; text-overflow: clip"/>
Despite setting the values of white-space and text-overflow, they did not change when inspecting the element.
https://i.sstatic.net/rL58P.png
I also attempted to set the styles within my Vue component, but had no success.
<style>
.tabulator .tabulator-header .tabulator-col .tabulator-col-content .tabulator-col-title{
white-space: normal;
text-overflow: clip;
}
</style>