Hi.
I have the same problem, I need to send back the chart because the menu can't read
this is my code
'Initialize <graph> element
strXML = "<graph bgAlpha='0,0' canvasBgAlpha='0' allowTransparent='true' caption='Produccion Dia' decimalPrecision='0' >"
'Initialize <categories> element - necessary to generate a multi-series chart
strCategories = "<categories>"
'Initiate <dataset> elements
strDataOK = "<dataset seriesName='OK' color='03753A'>"
strDataSC = "<dataset seriesName='SC' color='FD1216'>"
strDataRT = "<dataset seriesName='RT' color='0404B4'>"
'Iterate through the data
For i = 0 To UBound(arrData) - 1
'Append <category name='...' /> to strCategories
strCategories = strCategories & "<category name='" & arrData(i, 1) & "' />"
'Add <set value='...' /> to both the datasets
strDataOK = strDataOK & "<set value='" & arrData(i, 2) & "' />"
strDataSC = strDataSC & "<set value='" & arrData(i, 3) & "' />"
strDataRT = strDataRT & "<set value='" & arrData(i, 4) & "' />"
Next
'Close <categories> element
strCategories = strCategories & "</categories>"
'Close <dataset> elements
strDataOK = strDataOK & "</dataset>"
strDataSC = strDataSC & "</dataset>"
strDataRT = strDataRT & "</dataset>"
'Assemble the entire XML now
strXML = strXML & strCategories & strDataOK & strDataSC & strDataRT & "</graph>"
'Create the chart - MS Column 3D Chart with data contained in strXML
Return FusionCharts.RenderChart("../Charts/msColumn3D.swf", "", strXML.ToString, "ChartDay", "300", "300", False, True)
I hope can you help me.
regrats