On Thu, Mar 28, 2013 at 1:48 AM, <
inp...@gmail.com> wrote:
> Readers,
>
> This may be a repost.
>
> Have just started to use taskjuggler, after mention in planner mailing list
> ;)
>
> The help manual does not describe the chart attribute
> (
http://www.taskjuggler.org/tj3/manual/Tutorial.html#Visualizing_the_Project)
It's a columnid attribute, to be passed to the report so tj3 knows
what to include:
-
http://www.taskjuggler.org/tj3/manual/index.html
> How to introduce a line break in a report column such as 'note'?
Not sure how to do this, but you might look at this example reports.tji file:
-
https://code.google.com/p/django-taskjuggler3/source/browse/trunk/mysite/example/reports.tji?r=426
Note the definition of a tooltip:
#+begin_example
macro TaskTip [
tooltip istask() -8<-
'''Start: ''' <-query attribute='start'->
'''End: ''' <-query attribute='end'->
'''Complete:''' <-query attribute='complete'->
----
'''Resources:''' <-query attribute='resources'->
----
'''Precursors: ''' <-query attribute='precursors'->
----
'''Followers: ''' <-query attribute='followers'->
->8-
]
#+end_example
You can add one to query for the note attribute if you'd like:
#+begin_example
[deleted from above]...
<-query attribute='followers'->
----
'''Notes: '''
<-query attribute='note'->
->8-
]
#+end_example
Then, for your task, just add a note attribute:
#+begin_example
task id "name" {
attr_name value
attr_name value
note "This is a note"
}
#+end_exmaple
On compilation, clicking the task graphic (diamond, task length bar,
etc.) will reveal a popup with the note included. To do it another way
will require some tj3-foo that I don't have. I'm sure there's some way
to parse the note attribute into something like the task header, but
wouldn't know...
> How to introduce a css scroll bar to the Gantt chart section of the report
> table?
Mine has a scroll bar by default (if the width is too large). Does
yours not do this, or are you just looking to pass css customization
to the output?
> How to specify the area of the Gantt chart as a percentage of the total
> table width?
Not sure on this. I tried fiddling around with both 'width' and 'width
(column)':
-
http://www.taskjuggler.org/tj3/manual/width.html
-
http://www.taskjuggler.org/tj3/manual/width.column.html
Three mailing list posts refer to setting the column width:
-
https://groups.google.com/forum/#!msg/taskjuggler-users/x61Gs-xToxk/5ER2NGi4trsJ
-
https://groups.google.com/forum/?fromgroups=#!topic/taskjuggler-users/rbVqrOLnRuk
-
https://groups.google.com/d/msg/taskjuggler-users/G7F_639V1P8/Ep9-8VZLfv8J
I tried both and have not been successful... i.e., both:
#+begin_example
taskreport overview "" {
width 1200
header -8<-
->8-
columns bsi { title 'WBS' },
name, start, end, chart { ${TaskTip} width 1200 }
}
#+end_example
Neither seems to be working for me.
> How to solve the absence of the taskjugglerui
> (
http://lists.opensuse.org/opensuse/2013-03/msg01056.html)
What do you mean by "solve." If you mean "does it have one," then I'll
respond the same way I responded a year ago to a similar question:
-
https://groups.google.com/forum/?fromgroups=#!topic/taskjuggler-users/02-PtHI_U1U
If you mean "solve" as in create... I'd let Chris tell you how you can
contribute code :)
Best regards,
John
> --
> taskjuggler340
>
> --
> You received this message because you are subscribed to the "TaskJuggler
> Users" group.
> To post to this group, send email to
taskjugg...@googlegroups.com
> To unsubscribe from this group, send email to
>
taskjuggler-us...@googlegroups.com
> For more information about TaskJuggler visit
http://www.taskjuggler.org
> ---
> You received this message because you are subscribed to the Google Groups
> "TaskJuggler Users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to
taskjuggler-us...@googlegroups.com.
> For more options, visit
https://groups.google.com/groups/opt_out.
>
>