ASE Home Page Products Download Purchase Support About ASE
ChartDirector General
Forum HomeForum Home   SearchSearch

Message ListMessage List     Post MessagePost Message

  Bubble Chart Shading
Posted by Heppy on Feb-11-2009 15:24
Hi Peter,

I want ask U about Bubble Chart Shading.
What I can modification bubble chart color include $depth (set3D color) ? for example function addBarLayer2 / addBarLayer3.

Because I'm traying to modification addScatterLayer($depth) is not success.

Original Script :

function addScatterLayer($xData, $yData, $name = "", $symbol = SquareSymbol, $symbolSize = 5, $fillColor = -1, $edgeColor = -1)
{
return new ScatterLayer(callmethod("XYChart.addScatterLayer", $this->ptr, $xData, $yData, $name, $symbol, $symbolSize, $fillColor, $edgeColor));
}


Script Modification (Include $depth) :

function addScatterLayer($xData, $yData, $name = "", $symbol = SquareSymbol, $symbolSize = 5, $fillColor = -1, $edgeColor = -1, $depth = 0)
{
return new ScatterLayer(callmethod("XYChart.addScatterLayer", $this->ptr, $xData, $yData, $name, $symbol, $symbolSize, $fillColor, $edgeColor, $depth));
}


Thanks