Page Index Toggle Pages: 1 Send TopicPrint
Normal Topic Change content of ResourceView and Resource view timeline (Read 3434 times)
AaronTobiason
YaBB Newbies
*
Offline


I Love MindFusion!

Posts: 10
Joined: Jul 8th, 2014
Change content of ResourceView and Resource view timeline
Aug 29th, 2014 at 8:20pm
Print Post  
I would like to add some text to the first timeline of the resource view, but have been unsuccessful. I would like to add the words 'Craft' and 'User' as shown in the attachment. Is this possible?

  

RV.png (Attachment deleted)
Back to top
 
IP Logged
 
Meppy
God Member
*****
Offline


MindFusion support

Posts: 1783
Joined: Jul 20th, 2005
Re: Change content of ResourceView and Resource view timeline
Reply #1 - Sep 1st, 2014 at 7:35am
Print Post  
Hi,

In order to achieve this, you need to use custom drawing on the timeline. Set the CustomDraw property to CustomDrawElements.ResourceViewTimeline and add a CalendarListener.draw listener:

Code
Select All
public void draw(DrawEvent e)
{
	if (e.getElement() == CustomDrawElements.ResourceViewTimeline && e.getBounds().getY() < 10)
	{
		Rectangle r = e.getBounds();
		int width = calendar.getResourceViewSettings().getRowHeaderSize().intValue();
		RectangleD left = new RectangleD(r.getLeft(), r.getTop(), width / 2, r.getHeight());
		RectangleD right = new RectangleD(r.getLeft() + width / 2, r.getTop(), width / 2, r.getHeight());
		Font f = new Font("Arial", 12);
		e.getGraphics().drawString("Craft", f, Brushes.Red, left);
		e.getGraphics().drawString("Employee", f, Brushes.Red, right);
	}
} 


Normally, you would inspect the e.getIndex() argument to check which timeline is being drawn, but it appears that this property is 0 for all timelines. Because of this, we inspect the bounding rectangle.

Regards,
Meppy
  
Back to top
 
IP Logged
 
AaronTobiason
YaBB Newbies
*
Offline


I Love MindFusion!

Posts: 10
Joined: Jul 8th, 2014
Re: Change content of ResourceView and Resource view timeline
Reply #2 - Sep 2nd, 2014 at 4:18pm
Print Post  
Thanks Meppy, that worked.
  
Back to top
 
IP Logged
 
Page Index Toggle Pages: 1
Send TopicPrint