In OBIEE 10g it was possible to set the color attributes for a chart
by modifying palette.cxml file.How can you do this in OBIEE 11g?
Edit following file
<Oracle_BI1>\bifoundation\web\msgdb\s_blafp\viewui\chart\dvt-graph-skin.xml
Add lines after </SliceLabel> to specify the colours. Here is an example giving a range of colours:
This way you can modify the colors for chart. Try it out.
Edit following file
<Oracle_BI1>\bifoundation\web\msgdb\s_blafp\viewui\chart\dvt-graph-skin.xml
Add lines after </SliceLabel> to specify the colours. Here is an example giving a range of colours:
<SeriesItems>
<Series id="0" color="#4a9cd9" borderColor="#4a9cd9"/>
<Series id="1" color="#f68e55" borderColor="#f68e55"/>
<Series id="2" color="#a4aadc" borderColor="#a4aadc"/>
<Series id="3" color="#ffff66" borderColor="#ffff66"/>
<Series id="4" color="#99cc66" borderColor="#99cc66"/>
<Series id="5" color="#9de3f9" borderColor="#9de3f9"/>
<Series id="6" color="#dbacf3" borderColor="#dbacf3"/>
<Series id="7" color="#cc6699" borderColor="#cc6699"/>
<Series id="8" color="#886ecc" borderColor="#886ecc"/>
<Series id="9" color="#fac969" borderColor="#fac969"/>
<Series id="10" color="#1cc1f5" borderColor="#1cc1f5"/>
<Series id="11" color="#ccff99" borderColor="#ccff99"/>
</SeriesItems>
Refer the below link for Hex code.
http://hareeobiee.blogspot.in/2012/12/html-color-hex-codes.html
This way you can modify the colors for chart. Try it out.