Please use the following code snippet:
public partial class Form1 : Form
{
public class VM
{
public string Text
{
get; set;
}
public DateTime Start
{
get; set;
}
public DateTime End
{
get; set;
}
}
public Form1()
{
InitializeComponent();
var ViewModel = new VM[]
{
new VM()
{
Text = "CrashTest",
Start = new DateTime(2021, 11, 3, 10, 0, 0),
End = new DateTime( 2021, 11, 3, 23, 0, 0 ) //crash
//End = new DateTime( 2021, 11, 3, 22, 0, 0 ) //No crash
},
};
radGanttView1.GanttViewElement.GraphicalViewElement.OnePixelTime = new TimeSpan( 0, 1, 0 );
radGanttView1.GanttViewElement.GraphicalViewElement.TimelineStart = ViewModel.Min( T => T.Start );
radGanttView1.GanttViewElement.GraphicalViewElement.TimelineEnd = ViewModel.Max( T => T.End );
radGanttView1.GanttViewElement.GraphicalViewElement.TimelineRange = TimeRange.Day;
radGanttView1.GanttViewElement.ChildMember = "Text";
radGanttView1.GanttViewElement.TitleMember = "Text";
radGanttView1.GanttViewElement.StartMember = "Start";
radGanttView1.GanttViewElement.EndMember = "End";
radGanttView1.DataSource = ViewModel;
}
}
Currently, the possible solution that I can suggest is to increase the view's end with 1 hour:
radGanttView1.GanttViewElement.GraphicalViewElement.TimelineEnd = ViewModel.Max( T => T.End.AddHours(1));
Please refer to the attached gif file.
Steps :Please use the following code snippet. Activate the editor for a cell and click another cell:
private DataSet weddingPlan;
public DataSet WeddingPlan {
get
{
if(weddingPlan == null)
{
weddingPlan = new DataSet();
using (StreamReader rdr = new StreamReader("TelerikWeddingPlanner.xml"))
{
weddingPlan.ReadXml(rdr);
}
}
return weddingPlan;
}
}
public Form1()
{
InitializeComponent();
// Events
this.radGanttView1.GanttViewElement.EditorRequired += GanttViewElement_EditorRequired;
this.radGanttView1.GanttViewElement.EditorInitialized += GanttViewElement_EditorInitialized;
this.radGanttView1.GanttViewElement.ItemValidating += GanttViewElement_ItemValidating;
this.radGanttView1.GanttViewElement.ItemValidated += GanttViewElement_ItemValidated;
this.radGanttView1.GanttViewElement.ItemEdited += GanttViewElement_ItemEdited;
}
private void GanttViewElement_DoubleClick(object sender, EventArgs e)
{
Debug.WriteLine("GanttViewElement_DoubleClick");
}
private void GanttViewElement_EditorRequired(object sender, GanttViewEditorRequiredEventArgs e)
{
Debug.WriteLine("GanttViewElement_EditorRequired");
}
private void GanttViewElement_EditorInitialized(object sender, GanttViewItemEditorInitializedEventArgs e)
{
Debug.WriteLine("GanttViewElement_EditorInitialized");
}
private void GanttViewElement_ItemValidated(object sender, GanttViewItemValidatedEventArgs e)
{
Debug.WriteLine("GanttViewElement_ItemValidated");
}
private void GanttViewElement_ItemValidating(object sender, GanttViewItemValidatingEventArgs e)
{
Debug.WriteLine("GanttViewElement_ItemValidating");
Debug.WriteLine(e.Column.FieldName);
e.Cancel = true;
}
private void GanttViewElement_ItemEdited(object sender, GanttViewItemEditedEventArgs e)
{
Debug.WriteLine("GanttViewElement_ItemEdited");
}
private void Form1_Load(object sender, EventArgs e)
{
this.radGanttView1.DataSource = WeddingPlan;
this.radGanttView1.GanttViewElement.TaskDataMember = "Tasks";
this.radGanttView1.GanttViewElement.ChildMember = "Id";
this.radGanttView1.GanttViewElement.ParentMember = "ParentId";
this.radGanttView1.GanttViewElement.TitleMember = "Title";
this.radGanttView1.GanttViewElement.StartMember = "Start";
this.radGanttView1.GanttViewElement.EndMember = "Finish";
this.radGanttView1.GanttViewElement.ProgressMember = "Progress";
this.radGanttView1.GanttViewElement.LinkDataMember = "Links";
this.radGanttView1.GanttViewElement.LinkStartMember = "StartId";
this.radGanttView1.GanttViewElement.LinkEndMember = "EndId";
this.radGanttView1.GanttViewElement.LinkTypeMember = "LinkType";
this.radGanttView1.GanttViewElement.Columns.Add(new GanttViewTextViewColumn("Id"));
this.radGanttView1.GanttViewElement.Columns.Add(new GanttViewTextViewColumn("ParentId"));
this.radGanttView1.GanttViewElement.Columns.Add(new GanttViewTextViewColumn("Title"));
this.radGanttView1.GanttViewElement.Columns.Add(new GanttViewTextViewColumn("Start"));
this.radGanttView1.GanttViewElement.Columns.Add(new GanttViewTextViewColumn("Finish"));
this.radGanttView1.GanttViewElement.Columns[0].Visible = false;
this.radGanttView1.GanttViewElement.Columns[1].Visible = false;
this.radGanttView1.GanttViewElement.Columns[2].Width = 350;
this.radGanttView1.GanttViewElement.Columns[3].Width = 120;
this.radGanttView1.GanttViewElement.Columns[4].Width = 120;
this.radGanttView1.GanttViewElement.GraphicalViewElement.TimelineRange = TimeRange.Month;
this.radGanttView1.GanttViewElement.GraphicalViewElement.TimelineStart = new DateTime(2006, 8, 21);
this.radGanttView1.GanttViewElement.GraphicalViewElement.TimelineEnd = new DateTime(2007, 4, 3);
}
private void radGanttView1_ItemChildIdNeeded(object sender, GanttViewItemChildIdNeededEventArgs e)
{
int max = int.MinValue;
foreach (DataRow row in (this.radGanttView1.DataSource as DataSet).Tables[0].Rows)
{
if (int.Parse(row[0].ToString()) > max)
{
max = int.Parse(row[0].ToString());
}
}
e.ChildId = ++max;
}
It would be useful if the control takes advantage of the RadSpreadProcessing, RadPdfProcessing and RadWordsProcessing. This will allow developers to easily export the control's contents to the desired format.
Hey !
I need to know if you plan the development of a new function :
When you are in the list of your tasks, i want to navigate with the keyboard.
Im' Here :
And when i navigate in the list with the keyboard, i need to see the last column on the same task :
The focus is good but the horizontal scrollBar is on the same place and we can't the the all value of the cell.
Can we plan the improvment ? Or do you have a clean solution?
If you need more informations,
don't hesitate to contact me
Regards,
Valériane
To reproduce: run the sample project and scroll to the end of the view. You will notice that the tasks are not properly aligned. You can increase the GraphicalViewElement.OnePixelTime in order to make the alignment even worse. Workaround: Adjust the GraphicalViewElement.OnePixelTime in order to obtain the correct alignment.
Columns can automatically fill the entire width of the GanttViewTextViewElement . Just set the AutoSizeColumnsMode property to Fill.
How to reproduce: this.radGanttView1.GanttViewElement.GraphicalViewElement.TimelineRange = Telerik.WinControls.UI.TimeRange.DayQuarterHours; this.radGanttView1.GanttViewElement.GraphicalViewElement.AutomaticTimelineTimeRange = true; this.radGanttView1.GanttViewElement.GraphicalViewElement.OnePixelTime = new TimeSpan(0, 0, 15); Workaround: at the moment the Gantt control does not support an automatic timeline range for day quarter hours. The TimeRange.DayQuarterHours is similar to the half days and they should be handled the same way when in automatic timeline. If possible TimeRange.DayHalfHours this.radGanttView1.GanttViewElement.GraphicalViewElement.TimelineRange = Telerik.WinControls.UI.TimeRange.DayHalfHours;
Add functionality to sort tasks alphabetically, by date, by progress.
How to reproduce: 1. Run the project 2. Press the radButton1 3. Edit description of the first line (Line whose Identifier is TestProject1) 4. Clicking some other line to end the edit causes the ASSERT to come up
Add possibility to specify the start and end hours when you display hours in the applied time scale.
Currently when you set the TimelineRange property to TimeRange.Week displays two elements (the TopElement with weeks and the BottomElement with days). There are cases where users want to display single timeline - only weeks, days, quarters or years independent of the second timeline.
The position of splitter should allow to be fixed while resizing the control. Users want to be able to set the splitter next to the last column of TextViewElement when resizing.
Add functionality to filter items in RadGanttView.
Add functionality to perform grouping over the columns in the GanttViewTextViewElement . As a result the GraphicalViewElement should be refreshed accordingly.