Welcome Guest Search | Active Topics |

Gantt Chart: Addition information in Tooltip
Bob
#1 Posted : Friday, March 21, 2014 7:12:17 PM(UTC)
Rank: Newbie

Groups: Registered
Joined: 3/21/2014(UTC)
Posts: 5

Thanks: 0 times
Was thanked: 0 time(s) in 0 post(s)
I have a Gantt/Project chart showing a set of OR rooms with two series one for Available and one for Assignment.
On the assignment tooltip , I would like the tooltip to not only show the room name and date but I need addition information about the activity happening in the room. Below is the chart JS. How can I add more information to each assignment series beside room name/duration

$('#jqGantt').jqChart({
title: { text: 'Gantt Chart' },
animation: { duration: 1 },

shadows: {
enabled: true
},
legend: {
visible: false
},
axes: [
{
type: 'dateTime',
location: 'bottom',
zoomEnabled: true
}
],
series: [
{
type: 'gantt',
title: 'Available',
fillStyle: '#8BBA00',
data: [
['OR 1', new Date(2010, 0, 1, 5, 0, 0), new Date(2010, 0, 20, 5, 0, 0)],
['OR 1', new Date(2010, 0, 21), new Date(2010, 1, 15)],
['OR 2', new Date(2010, 1, 16), new Date(2010, 1, 28)],
['OR 3', new Date(2010, 2, 1), new Date(2010, 2, 20)],
['OR 3', new Date(2010, 2, 21), new Date(2010, 3, 10)],
['OR 4', new Date(2010, 2, 21), new Date(2010, 3, 10)]
]
},
{
type: 'gantt',
title: 'Assignments',
fillStyle: '#0B85FF',
data: [
['OR 1', new Date(2010, 0, 21), new Date(2010, 1, 15)],
['OR 2', new Date(2010, 1, 16), new Date(2010, 1, 28)],
['OR 3', new Date(2010, 2, 1), new Date(2010, 2, 20)],
['OR 1', new Date(2010, 2, 21), new Date(2010, 3, 10)],
['OR 3', new Date(2010, 1, 16), new Date(2010, 1, 28)],
['OR 3', new Date(2010, 3, 11), new Date(2010, 4, 1)]
]
}
]
});
};
Bob
#2 Posted : Friday, March 21, 2014 9:55:12 PM(UTC)
Rank: Newbie

Groups: Registered
Joined: 3/21/2014(UTC)
Posts: 5

Thanks: 0 times
Was thanked: 0 time(s) in 0 post(s)
I figured out you can add more elements to the data array which then can be access in the mouse up or down event or the format tooltip event

Thanks for viewing
Users browsing this topic
Guest
Forum Jump  
You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.

FlatEarth Theme by Jaben Cargman (Tiny Gecko)
Powered by YAF 1.9.4 | YAF © 2003-2010, Yet Another Forum.NET
This page was generated in 0.087 seconds.