I'm using Vue Tabulator here to over ride the column header not to use ellipsis when I continue to reduce the size of the column. Can't we update the column header in tabulator using inline style?
<VueTabulator ref="tabulator" v-model="receipts" :options="options" style="white-space: normal; text-overflow: clip"/>
But when I inspected the element, the values of white-space and text-overflow didn't change
I also tried inside the style tag within my vue component. No luck
<style>
.tabulator .tabulator-header .tabulator-col .tabulator-col-content .tabulator-col-title{
white-space: normal;
text-overflow: clip;
}
</style>