0

我有几个系列的笔记重叠如下:http ://trykendoui.telerik.com/oVen

我试图改变笔记的位置,但它并不总是有效如果有什么方法可以自动或手动分离它们?请帮忙

4

1 回答 1

-1

试试下面的链接,它会根据 point.value 改变位置:请参考函数对系列笔记的位置:

series: [{
                .........
                .........
                .........
                  notes: {
                      label: {
                          position: "outside",
                          format: "n2",
                          background: "rgb(35, 47, 87)",
                          color: "white",
                      },
                        position: function(point) {
                        var result = "bottom";
                        if (point.value % 2 === 0 || point.value < 5) {
                            result = "top";
                        }

                        return result;
                    }
               }

            }],

更新的代码链接

于 2014-08-04T13:12:03.430 回答