Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
200
Tooltip for column values are shown in 2/3 lines instead of one line
posted

This is my code:

 $("#pivotGrid").igPivotGrid({
                    dataSource: dataSource,
                    height: "650px",
                    width: "770px",
                    gridOptions: {
                        alternateRowStyles: true,
                        caption: "My pivot grid",                      
                        features: [
                            {
                                name: "Tooltips",
                                visibility: "always"                                
                            },
                            {
                                name: "Resizing",
                                deferredResizing: false,
                                allowDoubleClickToResize: true
                            }
                        ],
                        enableHoverStyles: true
                    }
                });

How can I ensure that the tooltip doesn't wrap i.e. here the value is "5.3415" and this is how it shows in tooltip (2 lines). I want the whole amount in one line and do not want to make it shown in 2/3 lines. Please suggest how can I design it nicely.

Parents Reply Children