基于Series的Shield UI条件项着色

时间:2014-03-17 14:49:29

标签: shieldui

我正在使用带有多个系列的ASP.NET条形图,并且想知道如何为每个系列应用一组单独的条件项着色。例如:

protected void ShieldChart1_SeriesItemDataBound(object sender, ChartSeriesItemDataBoundEventArgs e)
    {
        ChartSeriesItem item = e.Item as ChartSeriesItem;

        // If Series A, use these colors:

        if (item != null)
        {
            int value = (int)item.ValueY;
            if (value < 20)
            {
                item.Color = Color.Green;
            }
            else if (value > 55)
            {
                item.Color = Color.Yellow;
            }
            else if (value > 60)
            {
                item.Color = Color.Orange;
            }
            if (value > 75)
            {
                item.Color = Color.Red;
            }
        }

        // If Series B, use these colors: ...

    }

提前致谢,

史蒂夫

1 个答案:

答案 0 :(得分:0)

您可以通过完整的源代码找到有用的演示:

https://shieldui.com/search/content/item.Color

我认为它提供了如何做你想要的想法,还有一些你可能感兴趣的其他来源。