kendo ui - How to set kendoTooltip custom width with function? -


i want kendo tooltip custom width:

here code:

$(".tooptip_labell").kendotooltip({   position: "right",    animation: {       open: {         effects: "fade:in"         }}}); 

you can add 'width: 500' configuration. in case should below(i set value 150px.you may change whatever want.)

$(".tooptip_labell").kendotooltip({      position: "right",      width:150,      animation: {      open: {          effects: "fade:in"     }}}); 

Comments

Popular posts from this blog

'hasOwnProperty' in javascript -

How to understand 2 main() functions after using uftrace to profile the C++ program? -

android - Unable to generate FCM token from dynamically instantiated Firebase -