Table Drawing with jpgraph

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • JÿGius³ vs ::NRG::ius

    Table Drawing with jpgraph

    Hi all.

    How can I draw a table with jpgraph?
    I want a table as image.

    Thanks.

    G:


  • Erwin Moller

    #2
    Re: Table Drawing with jpgraph

    JÿGius³ vs ::NRG::ius wrote:
    [color=blue]
    > Hi all.
    >
    > How can I draw a table with jpgraph?
    > I want a table as image.
    >
    > Thanks.
    >
    > G:[/color]

    Hi,

    Look in the examples in JPGraph.

    look for a folder named: scr/Examples
    It contains a zillion examples.
    The excact answer to your question depends on what you excactly think a
    table is. :-)

    Good luck.

    Regards,
    Erwin Moller

    Comment

    • JÿGius³ vs ::NRG::ius

      #3
      Re: Table Drawing with jpgraph

      Hi all.
      [color=blue]
      > Look in the examples in JPGraph.
      >
      > look for a folder named: scr/Examples
      > It contains a zillion examples.[/color]

      Ehmmm...
      Yes... a lot of examples, but there isn't any table.
      I would like to draw something like...

      +col 1 | col 2 |col3 +
      | row | | |
      | row | | |
      | | | |

      A simple table...

      I tried to reuse a gantt graph - erasing the right side... but it is
      not so simple.

      Bye.

      G.



      Comment

      • Erwin Moller

        #4
        Re: Table Drawing with jpgraph

        JÿGius³ vs ::NRG::ius wrote:
        [color=blue]
        > Hi all.
        >[color=green]
        >> Look in the examples in JPGraph.
        >>
        >> look for a folder named: scr/Examples
        >> It contains a zillion examples.[/color]
        >
        > Ehmmm...
        > Yes... a lot of examples, but there isn't any table.
        > I would like to draw something like...
        >
        > +col 1 | col 2 |col3 +
        > | row | | |
        > | row | | |
        > | | | |
        >
        > A simple table...
        >
        > I tried to reuse a gantt graph - erasing the right side... but it is
        > not so simple.
        >
        > Bye.
        >
        > G.[/color]

        Hi,

        Ok, now I got it: You want a plain table.
        Sorry to be slow.
        Indeed, it is not in jpgraph.

        Well, in that case: draw it yourself using the PHP functions.
        It is some more work, but can be done.

        One tip: Have a look at imagefontheight and imagefontwidth to calculate the
        space needed. Maybe you have to implement word-breaks to fit in a wide
        string in a column.

        Maybe you can find a package that draws tables at www.phpclasses.org.

        Good luck.

        Regards,
        Erwin Moller

        Comment

        Working...