• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Tim Cooke
  • paul wheaton
  • Paul Clapham
  • Ron McLeod
Sheriffs:
  • Jeanne Boyarsky
  • Liutauras Vilda
Saloon Keepers:
  • Tim Holloway
  • Carey Brown
  • Roland Mueller
  • Piet Souris
Bartenders:

Values to be displayed beside the point in the chart

 
Greenhorn
Posts: 8
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,
Iam using ceowolf charts and Iam facing some problems
I request you to help me regarding the issue mentioned below

As Iam able to plot the graph with the specificed values on Y-axis I want the values to be displayed at that particular Point where the cewolf is ploting the point and also
Hghlighting the point as shown in the chart below

Please suggest me the better solution for the values to be displayed on the chart


For example here is the chart




if your not able to watch the Image click on the link

http://cewolf.sourceforge.net/new/img/tutorial.png" target="_blank" rel="nofollow">watch the Iamge
 
shafiullah shaik
Greenhorn
Posts: 8
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
http://cewolf.sourceforge.net/new/img/tutorial.png
 
shafiullah shaik
Greenhorn
Posts: 8
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
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>




reply
    Bookmark Topic Watch Topic
  • New Topic