zoukankan      html  css  js  c++  java
  • Charts with Dynamic Height or Width based on Categories/Data (SQL 2008, RDL)

    You may have been in this situation before - you designed a chart based on a particular dataset and everything looks great.  However, later the data volume increases, or new categories dynamically show up in your data source, and there is not enough horizontal/vertical space in the chart to show all the data or categories.  Unless, of course, you applied an approach to dynamically increase the height/width of the chart.  

    There are two new Chart RDL properties in the report designer / report builder property grid to simplify this task in Reporting Services 2008:

    • DynamicHeight: the height the chart should grow/shrink at runtime

    • DynamicWidth: the width the chart should grow/shrink at runtime

    If the properties are not specified, then the design time sizes will be applied.  Both properties can be set to any RDL expression that evaluates to a size string at runtime (e.g. ="3 in").  Btw, note the space in the size string between the numeric part and the size unit.  

    The attachment of this posting contains a small report that demonstrates this technique.  The report is based on the Northwind sample database (database download link).  The chart in the report dynamically increases its width based on the number of countries shown in the chart (determined by a report parameter value).  To accomplish this, the DynamicWidth property of the chart is set to the following expression:
       =(1 + Parameters!TopNCountries.Value / 2) & " in"

    In this example, if you choose to show only the top 5 countries, the chart will have a width of 1+5/2 = 3.5 inches.  If you select the top 10 countries, the chart has a width of 1+10/2 = 6 inches and therefore more horizontal room to draw additional categories.

    from: http://blogs.msdn.com/robertbruckner/archive/2008/10/27/charts-with-dynamic-size-based-on-categories-or-data.aspx

    注: RDLC, RDL 中如果有错误,编译会提示有错误,但不会指出哪个项目,哪个文件有错误(VS2008)。

  • 相关阅读:
    数字证书原理(转)
    python update from 2.6 to 2.7
    python uwsgi 部署以及优化
    uWSGI配置(转 )
    Python程序的性能分析指南(转)
    mysql 暴力破解 root账号密码
    VMware虚拟机实用经验总结十一条
    小技巧之指定refer
    cookie和session
    web相关
  • 原文地址:https://www.cnblogs.com/emanlee/p/1550210.html
Copyright © 2011-2022 走看看