Iam using jfree charts but iam facing a problem in highlighting the point on the chart,as it is showing only the
line connecting points without highlighting the points
please help me regarding the same
see the difference between these charts one is showing simple line connecting the points but the other is highlighting the points
suggest me the code for highlighting those points
Iam using the following code:;
<cewolf:chart id="line" title="${title}"
type="line" showlegend="true" legendanchor="south"
xaxislabel="Months" yaxislabel="Associate Count" background="#FF030D" >
<cewolf:gradientpaint>
<cewolf:point color="#FF0000" y="200" x="2000"/>
</cewolf:gradientpaint>
<!--cewolf:colorpaint color="#B0C4DE"/-->
<cewolf:data>
<cewolf:producer id="pageViews" usecache="" />
</cewolf:data>
<cewolf:chartpostprocessor id="dataColor" >
<cewolf:param name="0" value='<%= "#000000" %>' />
<cewolf:param name="1" value='<%= "#00FF00" %>'/>
<cewolf:param name="2" value='<%= "#990066" %>'/>
<cewolf:param name="3" value='<%= "#00FFFF" %>'/>
<cewolf:param name="4" value='<%= "#FF00FF" %>'/>
<cewolf:param name="5" value='<%= "#6600FF" %>'/>
<cewolf:param name="6" value='<%= "#990000" %>'/>
<cewolf:param name="7" value='<%= "#996600" %>'/>
<cewolf:param name="8" value='<%= "#99CC00" %>'/>
</cewolf:chartpostprocessor>
</cewolf:chart>
<cewolf:img chartid="line" renderer="/cewolf" width="1046" height="700"
alt="">
<cewolf:map tooltipgeneratorid="pageViews" />
</cewolf:img>