we need to merge candlestick and column 2d on server side , we had licensed source code for powercharts.
following is code which i created from the fusioncharts documentation but its not working for candlestick charts
any help would be appreciated.
i am using macromedia flash professional 8.
#include "com/fusioncharts/includes/LoadingFunctions.as"
#include "com/fusioncharts/includes/AppMessages.as"
import com.fusioncharts.core.charts.CandleStickChart;
var strXML:String = "";
strXML = strXML + "";
strXML = strXML + "";
strXML = strXML + "";
strXML = strXML + "";
strXML = strXML + "";
strXML = strXML + "";
strXML = strXML + "";
var xmlData:XML = new XML(strXML);
var chartContainerMC:MovieClip = this.createEmptyMovieClip("ChartHolder",1);
//Now, instantiate the chart using Constructor function of the chart.
/**
* @param targetMC Movie clip reference in which
* the chart will create its own movie clip.s
* @param depth Depth inside parent movie clip in which
* the chart will create its own movie clips.
* @param width Width of chart
* @param height Height of chart
* @param x x Position of chart
* @param y y Position of chart
* @param debugMode Boolean value indicating whether the chart
* is in debug mode.
* @param lang 2 Letter ISO code for the language of application
* messages. Depends on what data you've fed.
* @param scaleMode Scale mode of the movie - noScale or exactFit
*/
var fusionchart:CandleStickChart = new CandleStickChart(chartContainerMC, 1, 450, 325, 20, 15, false, "EN","noScale");
fusionchart.setXMLData(xmlData);
//Draw the charts
fusionchart.render();
//Stop
stop();