Coldfusion 线路未显示在cfchart上

Coldfusion 线路未显示在cfchart上,coldfusion,coldfusion-8,cfchart,Coldfusion,Coldfusion 8,Cfchart,我正在使用XML样式在我的cfchart上画两条线。不知什么原因,电话线没有显示出来。我以前用不同的图表做过,从来没有遇到过这个问题。请帮忙 守则: <cfset xmlStyle = '<?xml version="1.0" encoding="UTF-8"?><frameChart is3D="false"> <frame type="none" isHStripVisible="true" stripColor="##F0F9FF" outline=

我正在使用XML样式在我的cfchart上画两条线。不知什么原因,电话线没有显示出来。我以前用不同的图表做过,从来没有遇到过这个问题。请帮忙

守则:

<cfset xmlStyle = '<?xml version="1.0" encoding="UTF-8"?><frameChart is3D="false">
  <frame type="none" isHStripVisible="true" stripColor="##F0F9FF" outline="black"/>
    <elements drawOutline="false" drawShadow="true">
       <series index="0">
            <paint color="##00AEEF"/>
       </series>
  </elements>
    <paint paint="Plain"/>
    <xAxis>
      <labelStyle orientation="Slanted"/>
    </xAxis>
    <insets left="5" top="5" right="5" bottom="5"/>
    <legend isVisible="false"></legend>
    <yAxis>
    <limits index="1" min="75" max="76" color="red"/>
    <limits index="2" min="50" max="51" color="yellow"/>
    </yAxis>
    </frameChart>'>

    <cfchart format="flash" chartwidth="875" chartheight="400" scalefrom="0" scaleto="100" style="#xmlStyle#" xaxistitle="Date" yaxistitle="Score">
        <cfchartseries type="line" query="myQyery" itemcolumn="myDate" valuecolumn="myScore"  seriescolor="00AEEF"/>
    </cfchart>

由于某种莫名其妙的原因,当从帧标记中删除以下内容时,会出现行

isHStripVisible="true" stripColor="##F0F9FF"

如果有人能解释一下这种奇怪的行为,我将不胜感激

由于某种莫名其妙的原因,当从帧标记中删除以下内容时,会出现线条

isHStripVisible="true" stripColor="##F0F9FF"
如果有人能解释一下这种奇怪的行为,我将不胜感激