gantt-chart

Which Gantt chart/Project management tool would you recommend for linux? [closed]

孤人 提交于 2019-12-03 02:44:54
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 6 years ago . I need a Project management tool that works in Linux, and has Gantt charts. It doesn't have to be free, just not expensive. I don't care how it stores the information I give it, as long as I can access it. I must be able to print the Gantt charts. Must work in Linux. With those requirements, what can you

Python: module for plotting Gantt charts

十年热恋 提交于 2019-12-02 22:08:28
Is there a good Python module for plotting Gantt Charts ? I've tried CairoPlot , but it produces buggy results for complex data sets and lacks many configuration options. Code samples and images are highly appreciated. Thanks, Adam ChartDirector is pretty good at generating advanced charts of all kinds. It has decent python bindings, but it's, unfortunately, not native python or open source in general. There are actually some Gantt chart examples/screenshots . The code also includes python demo's for building gantt charts. If you're working on a web application, you can also consider Google

jfreechart: Gantt Chart Task Label Font Size

穿精又带淫゛_ 提交于 2019-12-02 08:30:58
I put my Gantt Chart (ChartPanel) in a JScrollPane,and create a button named [zoom in]. The function for the button [zoom in] is: When I click [zoom in] button, the width of chart panel will be doubled. newSize = originalChartWidth * 2; chartPanel.setPreferredSize(new java.awt.Dimension(newSize, 1000)); After click [zoom in] button, the scroll bar of JScrollPane will be appeared. Then the user can scroll to watch the whole chart after zoom in. But there is a problem, When I double the chart panel width, The Task Label Font will be enlarged too. Before zoom in After zoom in (The font will be

Google Timeline Visualization don't change series row height on slider interaction

送分小仙女□ 提交于 2019-12-02 07:08:59
So I've got a timeline with data in it that can be concurrent... When I move the ChartRangeSlider to a different timeframe, some of the timeline bars will either disappear or show because there is nothing happening in the timeframe that is active. These is how the timeline and the range slider are set up. I don't have any event listeners running... // Configure range slider var timelineRangeSlider = new google.visualization.ControlWrapper({ 'controlType': 'ChartRangeFilter', 'containerId': 'timeline-filter', 'state': { 'range': { 'start': currentTime, 'end': fourWeek } }, 'options': {

Customizing Dates on the Gantt Chart for Jasper Reports

雨燕双飞 提交于 2019-12-02 05:47:09
问题 In the gantt chart on my reports I have 1 year's worth of data. I'm only interested in seeing the month printed at the top of the gantt chart. [Jan-Dec]. However, the graph currently displays the Month and the year. How would I customize the chart to just output the month? 回答1: I'm not sure about JasperReports, but createGanttChart() uses a DateAxis as the range axis. Something like this should work: DateAxis axis = (DateAxis) plot.getRangeAxis(); axis.setTickUnit(new DateTickUnit(

Change the bar color in gantt chat based on value

懵懂的女人 提交于 2019-12-02 03:07:56
I would like to change the color of the bar in the gantt chart based in the value I am passing. When Percent done equals of higher than 100 the bar should be red. Is it possible? https://jsfiddle.net/1cez1duf/ google.charts.load('current', {'packages':['gantt'], 'language': 'pt-br'}); google.charts.setOnLoadCallback(drawChart); function drawChart() { var data = new google.visualization.DataTable(); data.addColumn('string', 'Task ID'); data.addColumn('string', 'Task Name'); data.addColumn('string', 'Resource'); data.addColumn('date', 'Start Date'); data.addColumn('date', 'End Date'); data

How to change color of particular sub-task in JFreeChart Gantt Chart?

橙三吉。 提交于 2019-12-01 22:29:46
I have a Gantt Chart with 5 tasks. Each task is divided into 3 sub-tasks. I need to define different color for each sub-task, e.g. Sub-task1: "light blue", Sub-task2: "blue", Sub-task3: "dark blue". I tried to google some examples, but I didn't find any full working example. Thanks. Update#1: I'm using IntervalCategoryDataset for the dataset. IntervalCategoryDataset dataset = createDataset(data); final Task t = new Task("Resource " + i, date(time11), date(time14)); t.addSubtask(new Task("Resource " + i, date(time11), date(time12))); t.addSubtask(new Task("Resource " + i, date(time12), date

Building a Gantt-Chart in iPad UIView

扶醉桌前 提交于 2019-12-01 11:45:10
I need to draw a Gantt-Chart within my iPad App. Are there any frameworks out there or examples to do this? I've searched the web and found nothing helpful till now. If I find something I will post it here later. There is nothing "ready-to-use". The solution is using quartz 2d classes to draw the gantt yourself I've not used it myself, but the iqwidgets library includes a Gantt view. 来源: https://stackoverflow.com/questions/8260622/building-a-gantt-chart-in-ipad-uiview

Building a Gantt-Chart in iPad UIView

为君一笑 提交于 2019-12-01 11:00:58
问题 I need to draw a Gantt-Chart within my iPad App. Are there any frameworks out there or examples to do this? I've searched the web and found nothing helpful till now. If I find something I will post it here later. 回答1: There is nothing "ready-to-use". The solution is using quartz 2d classes to draw the gantt yourself 回答2: I've not used it myself, but the iqwidgets library includes a Gantt view. 来源: https://stackoverflow.com/questions/8260622/building-a-gantt-chart-in-ipad-uiview

Formula to find the header index of the first non blank cell of a range in Excel?

人走茶凉 提交于 2019-12-01 07:40:43
I have this table, which can be seen as a basic custom gantt chart: And I would like to fill the A column with start dates, based on the first filled cell of the range on the same row, and the header value of its respective column (row 1). It's easier to show my expected result than write it actually: Thanks very much for your help! In A2 try this formula copied down =IF(COUNTA(B2:Z2),INDEX(B$1:Z$1,MATCH(TRUE,INDEX(B2:Z2<>"",0),0)),"") you may have to format column A with the required date format assumes data up to column Z, adjust as required 来源: https://stackoverflow.com/questions/11153987