目前这样
HTML code:
<table border="0" cellpadding="0" cellspacing="0" width="100%" height='280' class='innerbarII'>
<tr><td align='center' valign='bottom'>
<img border=0 src="http://localhost:8084/servlet/com.objectplanet.chart.ChartServlet?chart=line&graphInsets=80,80,50,260&width=640&height=480&sampleValues=12,34,45,56,67,56,67&sampleLabels=one,two,three,four,five,six,seven,eight,nine,ten&sampleLabelsOn=true">
</td></tr>
</table>
但这样只能画一条折线,怎么才能在上面画多条折线?
在线等,谢谢
easy Chart 范例代码:
SQL code:
http://localhost:8084/servlet/com.objectplanet.chart.ChartServlet?
chart=line&
width=600&
height=300&
seriesCount=4&
sampleValues_0=72,87,45,28,65&
sampleValues_1=486,745,854,368,267&
sampleValues_2=3,6,7,6,5&
sampleValues_3=286,145,154,268,667&
sampleColors=%23C6C6C6,%23498EFF,%23635AFF,%2331319C&
multiColorOn=true&
seriesRange_0=1&
seriesRange_1=2&
seriesRange_2=3&
seriesRange_3=4&
rangeOn_2=true&
rangeOn_3=true&
rangeOn_4=true&
rangePosition_1=left&am
一个JSP页面接收其他页面提交过来的FORM表单,但是要求只接收当前站点及其子站点提交过来的FORM表单,其他站点提交过来的表单不接收,这个怎么设置?
用过滤器
filter
将当前站点及其子站点放一个目录
然 ......