【问题标题】:cfchart pie chart with dataLabelStyle带有 dataLabelStyle 的 cfchart 饼图
【发布时间】:2011-07-28 01:27:47
【问题描述】:

根据此页面http://help.adobe.com/en_US/ColdFusion/9.0/CFMLRef/WSc3ff6d0ea77859461172e0811cbec22c24-792e.html,您可以使用 dataLabelStyle,它可以是“none”、“value”、“rowLabel”、“columnLabel”或“pattern”。但是,每当我使用“rowLabel”、“columnLabel”或“pattern”时,图像都不会显示。没有错误,只是图像应该在的空白画布。有谁知道如何解决这个问题?

谢谢

【问题讨论】:

  • 您的图表是否正确显示没有 dataLabelStyle?
  • 确实如此。没有它,它可以工作,有“无”和“价值”
  • 你能发布你的代码和版本吗?使用 CF9 对我来说效果很好。

标签: coldfusion cfchart


【解决方案1】:

我也遇到了同样的问题,我发现当我添加图例属性放置的时候,就是图表消失的时候。图例显示了位置,但没有图表。

我终于想出了该怎么做,我从头开始使用最小的饼图以及此页面中的示例: WebCharts3D Piecharts

我发现 XML 文件中元素的顺序是问题所在。

这就是我的 XML 文件现在的样子,它的工作原理:

<?xml version="1.0" encoding="UTF-8"?>

<paint paint="Plain" />

<title>
   <decoration style="None"/>
</title>

<dataLabels style="Pattern" font="Arial-16-bold">

   <![CDATA[
     $(value),  $(colPercent)
    ]]>

</dataLabels>

<legend placement="Right" font="Arial-16">
      <decoration style="None"/>
</legend>

<insets left="10" top="10" right="5" /> 

<elements action="" shape="Area" drawOutline="false">
    <morph morph="Blur" /> <!-- other options: grow, none -->
    <series index="0">
        <paint color="#E48701" /> <!-- orange -->
    </series>
    <series index="1">
        <paint color="#A5BC4E" /> <!-- lime -->
    </series>
    <!-- ...(etc) --> 
  </elements>
</pieChart>

【讨论】:

    【解决方案2】:

    五 (5) 种样式的测试对我来说效果很好。

    也许是你的代码?可能不是版本问题,因为 dataLabelStyle 是 introduced back in MX7

    <cfloop list="value,rowLabel,columnLabel,pattern,none" index="style">
        <cfchart format="png" scaleFrom="0" scaleto="30">
            <cfchartseries type="bar" dataLabelStyle="#style#">
                <cfchartdata item="bar" value="25">
                <cfchartdata item="foo" value="10">
            </cfchartseries>
        </cfchart>
    </cfloop>
    

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2017-02-26
      • 2021-03-25
      • 1970-01-01
      相关资源
      最近更新 更多