zoukankan      html  css  js  c++  java
  • Line Chart Color (Series Color / Style of RDLC/RDL report)

    My line chart displays all lines in a single color (the series color). I'd like a single color per item in the series just like the bar chart. Is there a way to change this? Or is the only differentiation the markers?

    i am trying to do the same thing too.
    i was able to  for a 100% stacked column chart, using multiple data values, and still specify a color for each value in the stacked column chart (3 of them in my case).
    however for my current line chart with only 1 data value, the default colors are automatic according to a color scheme, but i want to be able to define the colors. i was thinking of the following methods using coding under the chart properties -› data -› values (double click the value item) -› edit chart value -› appearance -› series style -› border and line -› color -› ƒx
    (refer to code snippet)
    and the color will be hardcoded to the value string of the data. alternative you can put it as a database column. these are just my ideas. would be great if someone out there has a better solution ... always open to learn.
    rev-boy

    =IIf(
            Fields!DATA_COLUMN.Value = "Type 1", "Green",
            IIf
            (
                Fields!DATA_COLUMN.Value = "Type 2", "Red",
                IIf
                (
                    Fields!DATA_COLUMN.Value = "Type 3", "Brown", "Black"
                )
            )
        )

    图表序列的颜色设置

    http://social.msdn.microsoft.com/forums/en-US/sqlreportingservices/thread/63500dff-3a01-4912-817a-40c7cdb78865/

  • 相关阅读:
    kernel 于ioctl申请书
    顺时针打印矩阵
    HDU 1557 权利指数 国家压缩 暴力
    从混沌到有序--熵
    分层思想总结
    什么是分层架构模式
    分层设计
    分层设计思想
    软件的生长方式
    设计模式、SOLID原则:组件与联系
  • 原文地址:https://www.cnblogs.com/emanlee/p/1557369.html
Copyright © 2011-2022 走看看