ProtoChart - Download, Examples & Docs Now Available!

July 30th, 2008  |  Published in General, Javascript, ProtoChart, Prototype  |  7 Comments

We want to thank those of you who waited impatiently for the release. We are now ready to release the code, documentation (better than nothing) and examples to show you how  you can use ProtoChart to create beautiful charts in your next project!

What should you know?

You can go to http://www.deensoft.com/lab/protochart/ to view a complete overview about the library.

For all the bugs and feature submission please use our Issue list located at Google Projects.

We hope you like this library and as always we will work to get the bugs fixed and features added to the  library as we go along. Your comments and suggestions are welcome via our blog.

Responses

  1. ProtoChart: Prototype + Canvas = Pretty Charts :: Deensoft says:

    July 30th, 2008 at 9:44 am (#)

    […] Update: Code and more information can be found here. […]

  2. Ivar says:

    July 30th, 2008 at 10:58 am (#)

    cool. thanks for this !

  3. Ani says:

    July 31st, 2008 at 2:40 am (#)

    Hi,

    I am facing a small issue. I will post my code first

    new Proto.Chart($(’linechart’),
    [
    {data: [1, 5], label: “Data 1″},
    {data: [3, 9], label: “Data 2″}

    ],
    {
    xaxis: {min: 0, max: 14, tickSize: 1},
    yaxis: {min: 0, max: 10, tickSize: 1} ,
    legend: {show: true},
    points: {show: true},
    lines: {show: true}
    });

    I am getting error like : An invalid or illegal string was specified” code: “12
    I can see the axis and legend but the lines are not getting displayed. Any suggestions? What I am doing wrong here?

    I am using Firefox 3.0.1

  4. Obaid says:

    July 31st, 2008 at 5:34 am (#)

    Ani the issue is the way you are passing your data..

    Each dataset is a [x, y] pair.. so you should pass in:

    { data: [ [x1,y1], [x2,y2], … ], label: “data 1″ }

    that should fix your chart..

    let me know if you have any further questions :)

  5. Anders says:

    August 1st, 2008 at 4:27 am (#)

    Hey!

    Do you think you can make a easy example how to use it from start.
    What code do I have to write on my page. Tried the example but they want show me anything.

    Thanks Anders

  6. Obaid says:

    August 1st, 2008 at 6:33 am (#)

    We have started a tutorial session on our blog. Please refer to those and many more to come to see how you can use ProtoChart.

  7. outaTiME at refinn dot com » Blog Archive » ProtoChart: Prototype + Canvas = Pretty Charts says:

    August 11th, 2008 at 8:14 am (#)

    […] Update: Code and more information can be found here. […]

Leave a Response