<< Click to Display Table of Contents >> Navigation: »No topics above this level« TOC : Script API > JavaScript > JavaScript API > ChartObject > ChartLabel > Method >SetTopBorderColor |
Sets the color of the top border.
Prototype :
void SetTopBorderColor
(
string TopBorderColor
)
Arguments :
TopBorderColor |
specify by hexa or decimal RGB value in the form of "#hhhhhh" or "ddd, ddd, ddd" |
Example :
var ChartRootUnit = This.GetChartRootUnit();
var ChartShapeCnt = ChartRootUnit.GetShapeCount();
for(i = 0; i < ChartShapeCnt; i++) {
var ChartShape = ChartRootUnit.GetShape(i);
var ChartPieceCnt = ChartShape.GetPieceCount();
for(j = 0; j < ChartPieceCnt; j++) {
var ChartPiece = ChartShape.GetPiece(j);
var ChartPieceLabel = ChartPiece.GetLabel();
if(ChartPieceLabel != null) {
ChartPieceLabel.SetTopBorderColor("#FF0000"); //Red
//ChartPieceLabel.SetTopBorderColor("255, 0, 0"); //Red
}
}
}
Available Events :
OnBind, OnPostChartBuild
For the object returned by GetChartLabel function of a chart, the function can be called only in OnBind event, and for the object returned by GetLabel function of a ChartPiece, the function can be called only in OnPostChartBuild event.