Pivottable.js filter dialog box button size

202 Views Asked by At

In my pivottable, when I clicked a field to open the filter box, its "Apply" & "Cancel" buttons are too small.

enter image description here

Using this style also can't make them bigger:

.pvtFilterBox{
    font-size: 16px;
}

Please advise.

1

There are 1 best solutions below

0
On BEST ANSWER

Found that it is nothing to do with styling.

This is because I defined the locales for 'totals' only. It won't use default locales for other words (Apply, Cancel, etc).

$.pivotUtilities.locales.en = {
          localeStrings: {
                totals: "TOTALS"
          }
};