gantt-chart

Gantt Chart Controls on Windows Forms [closed]

有些话、适合烂在心里 提交于 2019-12-24 01:31:34
问题 As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance. Closed 7 years ago . We are evaluating options for a Gantt chart control (on Windows Forms) as opposed developing one on our own. What are the various

Gantt Chart Controls on Windows Forms [closed]

元气小坏坏 提交于 2019-12-24 01:31:07
问题 As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance. Closed 7 years ago . We are evaluating options for a Gantt chart control (on Windows Forms) as opposed developing one on our own. What are the various

d3.js need repeated values on y axis

血红的双手。 提交于 2019-12-23 05:44:19
问题 I have an array: taskTypes = [slot1, slot2, slot3,slot4,slot1,slot2,slot6]; my code for y-axis is: var y = d3.scale.ordinal() .domain(taskTypes) .rangeRoundBands([ 0, height - margin.top - margin.bottom ], .1); It is showing only unique values on y-axis, I want to show the values as they are. Can you help me out with the correct code? 回答1: This answer gives the basic solution: Using the ordinal scale, domain values uniquely identify corresponding range values. In your case both the '"slot1"'

JQuery GanttChart - Apply Data

99封情书 提交于 2019-12-23 05:08:05
问题 I tried to use the gantview jquery plugin (https://github.com/thegrubbsian/jquery.ganttView) So the needed data is like: { id: 1, name: "Feature 1", series: [ { name: "Planned", start: new Date(2010,00,01), end: new Date(2010,00,03) }, { name: "Actual", start: new Date(2010,00,02), end: new Date(2010,00,05), color: "#f0f0f0" } ] }, { id: 2, name: "Feature 2", series: [ { name: "Planned", start: new Date(2010,00,05), end: new Date(2010,00,20) }, { name: "Actual", start: new Date(2010,00,06),

Free library supporting Gantt charts and granularity <= 1 hour

牧云@^-^@ 提交于 2019-12-23 03:16:06
问题 Is there a free graphical library that supports Gantt charts with units of hours or even minutes? I've tried a few. JFreeChart was among the most promising but scaling down seems to reduce the maximum timescale represented to just a few days. 回答1: JFreeChart should be able to go deeper that days. SimpleTimePeriod can represent time down to the millisecond. Might just need to adjust the time display of the axis from the plot. 回答2: The nebula solution may solve your problem, you have access to

Invalid visualization type: gantt with angular-google-chart

大城市里の小女人 提交于 2019-12-23 02:17:51
问题 I'm working in an AngularJS project and I'm trying to add a Google Gantt chart with angular-google-chart tool, but it doesn't work. Here is the code: JS CODE var app = angular.module('myApp', [ 'ngRoute', 'angular.filter', 'googlechart' ]); app.value('googleChartApiConfig', { version: '1.1', optionalSettings: { packages: ['gantt'], language: 'en' } }); app.controller("chartController", function ($scope) { $scope.ganttChart = { "type": "gantt", "data": { "cols": [ {id: 'Task ID', type: 'string

Google Gantt Chart

99封情书 提交于 2019-12-22 18:33:11
问题 I am using the Gantt Chart provided by Google. I have added a listener to when I click on any of the elements or entity in attempt to return the row/columns data, but it is returning empty, function selectHandler() { var selectedItem = chart.getSelection(); if (selectedItem) { console.log(selectedItem); } } google.visualization.events.addListener(chart, 'select', selectHandler); Here is my attempt on jsfiddle: https://jsfiddle.net/30cuaarb/ 回答1: Selection does not seem to work with google

Create Sharepoint List which has gantt view - programmatically

喜你入骨 提交于 2019-12-22 00:35:34
问题 I am new to sharepoint therefore don't know much - any help would be highly appreciated. Basically i want to programatically (in the same project) :- 1. create a List and make it a Gantt View 2. Add add appropriate cololumns (that would generate the Gantt chart) to the List 3. And finally i would like to add values/data to the coloums created via this code too... If there is a sample code or any tutorial...please any help would be much appreciated please thank you so much 回答1: Try this: using

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

筅森魡賤 提交于 2019-12-20 02:30:54
问题 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(

Is there any LaTeX package for drawing Gantt diagrams?

你。 提交于 2019-12-18 11:47:19
问题 Are there LaTeX packages for (more or less) easily drawing Gantt diagrams? Thanks. 回答1: The pgfgantt package is quite easy to use and does linking. 回答2: I have not used myself, but it looks like PSTricks offers some Gantt chart drawing capabilities. Main PSTricks site: http://tug.org/PSTricks/main.cgi Example of Gantt chart using PSTricks: http://tug.org/PSTricks/main.cgi?file=Examples/Charts/gantt 回答3: There is the pst-gantt package. The bad news is, that you have to draw dependencies