Bar Chart

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • shachikhare
    New Member
    • Jun 2008
    • 2

    Bar Chart

    hi,
    i have downloaded a code to draw a bar chart.the link to the code is http://www.superlimina l.com/sources/BarChart.java.h tml
    on compiling the code it reported the error "cannot find symbol SelectionSet"
    plz give some solution...
  • JosAH
    Recognized Expert MVP
    • Mar 2007
    • 11453

    #2
    Originally posted by shachikhare
    hi,
    i have downloaded a code to draw a bar chart.the link to the code is http://www.superlimina l.com/sources/BarChart.java.h tml
    on compiling the code it reported the error "cannot find symbol SelectionSet"
    plz give some solution...
    Your compiler doesn't lie: it can't find that symbol 'SelectionSet'. You have to at
    least have a class available (read: present in your classpath), possibly packed in
    a .jar file where your compiler can find that symbol. Also check your 'import'
    statements; your compiler isn't psychic and nor are we.

    kind regards,

    Jos

    Comment

    Working...