Hi Andrei Vishnevsky
Thanks for your reply.....i already did the scenario as per the requirement i need to change the color for groupid check box .
For more details please see the below code and screen shot
HTML Code:(Layout)
<%@page language="abap" %>
<%@extension name="htmlb" prefix="htmlb" %>
<%@extension name="graphics" prefix="graphics" %>
<%@extension name="htmlb" prefix="abap" %>
<%
DATA: line TYPE igs_data.
line-x = 'Claims'.
line-y = 20.
line-color = 27. "48 baground 5
line-groupid = 'Month/Year'.
line-extension = 'href="http://www.sap.com" alt="SAP AG"'.
append line to lt_data1.
line-x = 'Within SLA'.
line-y = 15.
line-color = 27.
append line to lt_data1.
line-x = 'Out of SLA'.
line-y = 0.
line-color = 27.
append line to lt_data1.
line-x = 'Referred back'.
line-y = 5.
line-color = 27.
append line to lt_data1.
%>
<%--<htmlb:content design="classic+design2002+design2003+design2008" controlRendering="sap"--%>
<%-- rtlAutoSwitch = "true">--%>
<htmlb:page title = "BSP Extension: HTMLB / Element: Chart" marginTop="100">
<%-- <htmlb:form>--%>
<htmlb:chart
id = "LineChart1"
data = "<%=lt_data1%>"
width = "1000"
height = "300"
title = "Claims Processed"
chartType = "COLUMNS_STACKED"
legendPosition = "SOUTH"
colorOrder = "STRAIGHT"
/>
<%-- </htmlb:form>--%>
</htmlb:page>
<%--</htmlb:content>--%>
</BODY>
Please guide me how i need to change the check box color from yellow to blue.
Thanks,
Harikrishna M
