This may not really be a newbie question, but here goes:

Is there any way to change the weight of a line chart data line?

I have the following tag in my code:
                                        <CFCHART FORMAT="jpg"
                                                        CHARTHEIGHT="150"
                                                        CHARTWIDTH="300"
                                                        
SERIESPLACEMENT="default"
                                                        LABELFORMAT="number"
                                                        SHOWLEGEND="no"
                                                        GRIDLINES="5"
                                                        
SCALETO="#CntChartMax#"> <!--- Need to get the maximum value  
and round it up. --->
                                        
                                                <CFCHARTSERIES
                                                        TYPE="area"
                                                        QUERY="COUNT_DATA"
                                                        ITEMCOLUMN="MONTHDAY"
                                                        VALUECOLUMN="0"
                                                        SERIESCOLOR="white">
                                                        
                                                <CFCHARTSERIES
                                                        TYPE="line"
                                                        QUERY="COUNT_DATA"
                                                        ITEMCOLUMN="MONTHDAY"
                                                        VALUECOLUMN="Y1_CNT"
                                                        MARKERSTYLE="none"
                                                        PaintStyle="plain"
                                                        SERIESCOLOR="red">

I tried messing with the PaintStyle attribute, but it doesn't seem to  
do anything to a line chart.

Any help would be appreciated.

TIA,
Derek
======
Help! I'm suffering the plight!



~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-newbie/message.cfm/messageid:4611
Subscription: http://www.houseoffusion.com/groups/cf-newbie/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.15

Reply via email to