Flex图表数据提示位置

时间:2010-02-08 17:29:59

标签: flex charts

我为PlotChart创建了自己的dataTipRenderer,我正在尝试更改它的显示位置。我试过了:

this.x -= (some number);
this.y -= (some number);

我已经尝试将此代码放在updateDisplayList函数中,当我设置数据时,但似乎根本没有移动数据提示。

1 个答案:

答案 0 :(得分:4)

需要覆盖move(x,y)函数,因为在外部调用它以在设置对象的数据对象后设置位置。

override public function move(x:Number, y:Number):void
{
    super.move(x - 17, y - 40);
}