Can you please try this?
<dashboard>
<label>Title break down</label>
<row>
<panel id="panel_id">
<title>A B C D</title>
<html>
<style>
#panel_id .panel-title {
overflow-wrap: break-word;
width: 3px;
}
</style>
</html>
</panel>
</row>
</dashboard>
KV
i do not want like break word by word ...it is like if my title is Sum (A+B) then i want ouptput as
Sum
(A+B)
like that I want output and my panel is having single tag and then title
Can you please share more details like your requirement and from how you are fetching A and B into title? Sample XML will be appreciated.
<panel><sinlgle><title> Sum(A+B)</title></single><search><query>query to fetch data</query></search></panel>
Then I think increasing OR decreasing width would help you.
<dashboard>
<label>Title break down</label>
<row>
<panel id="panel_id">
<title>Sum (A+B)</title>
<html>
<style>
#panel_id .panel-title {
overflow-wrap: break-word;
width: 40px;
}
</style>
</html>
</panel>
</row>
</dashboard>
here we did some stying to make the text alignment in right
Not working for me