Lot of Ways
- If it is static view (forever, as some team would change into dynamic quite soon ), then you can enable using SimpleXML
- if it is dynamic, best bet is to use "sideviewutils"
An example of simple XML implementation below (Create a dashboard, and then edit the dashboard source with tag)
<?xml version='1.0' encoding='utf-8'?>
<dashboard>
<label>Sample Saved Search</label>
<row>
<chart>
<searchName>my_Saved_Search</searchName>
<title>my TItle</title>
<option name="charting.chart">line</option>
</chart>
</row>
</dashboard>
... View more