如何更改 AmCharts 的图例标签文本?

How to alter legend labelText for AmCharts?

我正在使用 AmCharts 创建饼图。我正在尝试更改图例 labelText 以显示标题、百分比和值。我尝试了以下不起作用的方法:(这被传递给 AmCharts.makeChart() 方法

            "legend": {
                "align": "center",
                "position": "right",
                "marginRight": 21,
                "markerType": "circle",
                "right": -4,
                "labelText": "[[title]]: [[percents]]% $[[value]]",
            },

最后我发现我应该使用 valueText 而不是 labelText 所以我可以改成这样:

           "legend": {
                "align": "center",
                "position": "bottom",
                "marginRight": 21,
                "markerType": "circle",
                "right": -4,
                "labelText": "[[title]]",
                "valueText": " $[[value]] [[percents]]%",
                "valueWidth": 80,
                "textClickEnabled": true
            },