• 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
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

tooltip in struts2 jquery chart plugin

 
Greenhorn
Posts: 4
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi all,
I am using struts2 jquery chart plugin and I need tooltip functionality in it. Setting tooltip parameter inside chart tag didn't work.Am I missing something?Is there any way to implement this by calling jQuery/javascript function?This is my code-

<sjc:chart
id="chartObjects"
cssStyle="width: 500px; height: 200px;"
xaxisLabel="Week"
yaxisLabel="Cost"
yaxisLabelFontSizePixels="12"
yaxisLabelFontFamily="Arial"
xaxisLabelFontSizePixels="12"
xaxisLabelFontFamily="Arial"
xaxisTickSize="1"
tooltip="Test ToolTip"

>
<sjc:chartData
label="Planned Cost"
list="pointsForActualCost"
points="{ show: true }"
lines="{ show: true }"

/>
<sjc:chartData
label="Actual Cost"
list="pointsForPlannedCost"


/>
</sjc:chart>
 
New rule: no elephants at the chess tournament. Tiny ads are still okay.
a bit of art, as a gift, the permaculture playing cards
https://gardener-gift.com
reply
    Bookmark Topic Watch Topic
  • New Topic