0

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

谢谢

4

2 回答 2

2

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

我终于想出了该怎么做,我从头开始使用最小的饼图和此页面中的示例: 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>
于 2012-11-30T16:11:26.880 回答
1

This test of the five(5) styles works fine for me.

Maybe it is your code? Probably not a version problem as dataLabelStyle was 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>
于 2011-07-28T14:31:23.373 回答