Hi All
I need to align panel title in center, Please help me to achieve the same.
Thanks.
Hi
Try this using CSS.
<dashboard>
<row depends="$hide$">
<panel>
<html>
<style>
#test h2 {
text-align: center !important;
}
</style>
</html>
</panel>
</row>
<row>
<panel id="test">
<title>Sample Panel Title</title>
<table>
<search>
<query>index="_internal" |stats count by host</query>
<earliest>-24h@h</earliest>
<latest>now</latest>
</search>
<option name="drilldown">none</option>
</table>
</panel>
</row>
</dashboard>
Hi
Try this using CSS.
<dashboard>
<row depends="$hide$">
<panel>
<html>
<style>
#test h2 {
text-align: center !important;
}
</style>
</html>
</panel>
</row>
<row>
<panel id="test">
<title>Sample Panel Title</title>
<table>
<search>
<query>index="_internal" |stats count by host</query>
<earliest>-24h@h</earliest>
<latest>now</latest>
</search>
<option name="drilldown">none</option>
</table>
</panel>
</row>
</dashboard>