1
我正在使用XML樣式在我的cfchart上繪製兩行。由於某些未知原因,線條沒有顯示出來。我之前用不同的圖表做過這件事,從來沒有遇到過這個問題。請幫忙!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>