Jump to content

Java Applets for Websites

- - - - -

This topic has been archived. This means that you cannot reply to this topic.
4 replies to this topic

#1
ld_pvl

ld_pvl

    Learning Programmer

  • Members
  • PipPipPip
  • 46 posts
Hi,

I want to write a simple code which would allow me to plot a graph with x-y axis, the points on the graph are gonna be inputed via a two dimensional array I suppose. The graph is going to be used on a website.

Please let me know any sources where I can do some research on writing codes for graphs. Any books anyone would recommend as well?

Thank you
LD

#2
WingedPanther

WingedPanther

    A spammer's worst nightmare

  • Moderators
  • 16,831 posts
Most any algebra or pre-calculus book should have what you need to know.
Programming is a branch of mathematics.
My CodeCall Blog | My Personal Blog

#3
ld_pvl

ld_pvl

    Learning Programmer

  • Members
  • PipPipPip
  • 46 posts

WingedPanther said:

Most any algebra or pre-calculus book should have what you need to know.

I mean actually Java books with examples. Knowing the theory behind what we want to implement into a program by coding doesn't really mean we can code it.

What java library should I look into.

#4
asgard

asgard

    Newbie

  • Members
  • Pip
  • 2 posts
Hi,
Try these packages:

Package javax.swing
Package java.awt
Package java.awt.geom.*

Cheers
Asgard

#5
ld_pvl

ld_pvl

    Learning Programmer

  • Members
  • PipPipPip
  • 46 posts
thank you =]