0

我正在使用 Telerik RadDiagram 来构建图表。灰线在我的图表中的形状(需求、开发等)之上。有没有办法把它们放在形状后面?

在此处输入图像描述

// ... getting ready the shape objects ...

for (int i = 0, j = 0; i < monthCount + 1; i++, j = j + 2)
{
    // ... getting ready the shape and connection objects ...

    RadDiagram1.ShapesCollection.Add(shapeForLines[j]);
    RadDiagram1.ShapesCollection.Add(shapeForLines[j + 1]);
    RadDiagram1.ConnectionsCollection.Add(monthLine[i]);
    RadDiagram1.ShapesCollection.Add(labelMonth[i]);
}


for (int i = 0; i < 7; i++)
{
    if (i < 6) { RadDiagram1.ShapesCollection.Add(shape[i]); }
    if (i < 7) { RadDiagram1.ShapesCollection.Add(label[i]); }
}
4

2 回答 2

0

尝试ZIndex在创建形状时设置属性。我在 WinForms 中设置的,也许你也可以找到它

于 2016-12-07T07:38:19.570 回答
0

这对我有用:当 Default.aspx 加载一个 Java-Script-Method 时,将调用连接并返回:

function diagram_load(sender) {
    diagram = sender.get_kendoWidget();
    //.....
    diagram.toFront(diagram.Shape);
    diagram.toBack(diagram.connections);
} // diagram_load(sender)
于 2016-10-25T13:49:55.067 回答