Hi jago,
You can use to this example:
/
***********************************************************************************************************************************/
// To Being used to calling data from DataTable's Object for Time Line
Chart.
function loadTimeLine() {
drawChart();
}
// To Being used to Load API for Time LIne Chart.
function loadTimeLineAPI() {
var a = google.load("visualization", "1", {"callback": loadTimeLine,
packages:["annotatedtimeline"]});
}
// Creating DataTable's Object for Time Line Chart data.
function drawChart() {
var data = new google.visualization.DataTable({
cols: [
{label: 'Date',
type: 'date'},
{label:
'Volume', type: 'number'},
{label: 'Price', type: 'number'}],
rows: [
{c:[{v: new Date(2008, 3 ,26)},
{v: 4.482362E7}, {v:
28.56}]},
{c:[{v: new Date(2008, 8, 26)},
{v: 4.477303E7}, {v:
27.27}]},
{c:[{v: new Date(2008, 9, 16)},
{v: 1.116584E8}, {v:
25.99}]},
{c:[{v: new Date(2008, 8, 4)},
{v: 6.040522E7}, {v:
25.28}]},
{c:[{v: new Date(2008, 7, 11)},
{v: 6.810552E7}, {v:
25.25}]}
]
});
var chart = new google.visualization.AnnotatedTimeLine
(document.getElementById('div1'));
chart.draw(data, {displayAnnotations: true});
}
// jQuery function to document ready.
$(document).ready(function()
{
loadTimeLineAPI();
});
/
***********************************************************************************************************************************/
Thanks
- arsh
On Jan 29, 7:21 pm, jago <[email protected]> wrote:
> Can somebody post the following Javascript example in JSon?
>
> http://code.google.com/apis/visualization/documentation/gallery/annot...
>
> I try to rewrite this thing in JSon but fail. No clue where the
> problem is.
>
> Cheers,
> jago
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Google Visualization API" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/google-visualization-api?hl=en
-~----------~----~----~----~------~----~------~--~---