Telerik Forums
UI for WinForms Forum
3 answers
56 views

Hello, I have tried modifying https://docs.telerik.com/devtools/winforms/ganttview/timeline/custom-timeline to have it do custom ranges, however when I run my copy I get a fully blank header. See attached for images.

My setting the custom behavior:

radGanttView1.GanttViewElement.GraphicalViewElement.TimelineStart = start; // Start is a DateTime
radGanttView1.GanttViewElement.GraphicalViewElement.TimelineEnd = end; // End is a DateTime
radGanttView1.GanttViewElement.GraphicalViewElement.OnePixelTime = TimeSpan.FromMinutes(0.0025);
radGanttView1.GanttViewElement.GraphicalViewElement.TimelineRange = TimeRange.Custom;
var behavior = new WarehouseTimelineBehavior { Start = start, End = end };
radGanttView1.GanttViewElement.GraphicalViewElement.TimelineBehavior = behavior;

And my Behavior class:

001.using System;
002.using System.Collections.Generic;
003.using Telerik.WinControls.UI;
004. 
005.namespace WarehouseBuilder.LogViewer
006.{
007.    public class WarehouseTimelineBehavior : BaseGanttViewTimelineBehavior
008.    {
009.        public DateTime Start = DateTime.MinValue;
010.        public DateTime End = DateTime.MaxValue;
011. 
012.        public override DateTime AdjustedTimelineStart
013.        {
014.            get
015.            {
016.                if (GraphicalViewElement.TimelineRange != TimeRange.Custom || Start == DateTime.MinValue)
017.                {
018.                    return base.AdjustedTimelineStart;
019.                }
020.                return Start;
021.            }
022.        }
023. 
024.        public override DateTime AdjustedTimelineEnd
025.        {
026.            get
027.            {
028.                if (GraphicalViewElement.TimelineRange != TimeRange.Custom || End == DateTime.MaxValue)
029.                {
030.                    return base.AdjustedTimelineEnd;
031.                }
032.                return End;
033.            }
034.        }
035. 
036.        public override IList<GanttViewTimelineDataItem> BuildTimelineDataItems(TimeRange range)
037.        {
038.            if (range != TimeRange.Custom)
039.            {
040.                return base.BuildTimelineDataItems(range);
041.            }
042.            return this.BuildTimelineDataItemsForDecadesRange();
043.        }
044. 
045.        public IList<GanttViewTimelineDataItem> BuildTimelineDataItemsForDecadesRange()
046.        {
047.            List<GanttViewTimelineDataItem> result = new List<GanttViewTimelineDataItem>();
048.            DateTime currentDate = AdjustedTimelineStart;
049.            int currentMinuteNumber = currentDate.Minute;
050.            int newMinuteNumber = currentMinuteNumber;
051. 
052.            GanttViewTimelineDataItem item = new GanttViewTimelineDataItem(currentDate, currentDate.AddMinutes(5), GraphicalViewElement.TimelineRange, GraphicalViewElement.OnePixelTime);
053. 
054.            result.Add(item);
055. 
056.            while (currentDate < AdjustedTimelineEnd)
057.            {
058.                item.End = currentDate.AddMinutes(5);
059.                currentDate = currentDate.AddMinutes(5);
060.                newMinuteNumber = currentDate.Minute;
061. 
062.                if (newMinuteNumber != currentMinuteNumber && currentDate <= AdjustedTimelineEnd)
063.                {
064.                    currentMinuteNumber = newMinuteNumber;
065.                    item = new GanttViewTimelineDataItem(currentDate, currentDate, GraphicalViewElement.TimelineRange, GraphicalViewElement.OnePixelTime);
066.                    result.Add(item);
067.                }
068.            }
069. 
070.            return result;
071.        }
072. 
073.        public override GanttTimelineCellsInfo GetTimelineCellInfoForItem(GanttViewTimelineDataItem item, TimeRange timeRange)
074.        {
075.            if (timeRange != TimeRange.Custom)
076.            {
077.                return base.GetTimelineCellInfoForItem(item, timeRange);
078.            }
079. 
080.            return GetTimelineCellInfoForDecadeRange(item);
081.        }
082. 
083.        public GanttTimelineCellsInfo GetTimelineCellInfoForDecadeRange(GanttViewTimelineDataItem item)
084.        {
085.            int minutes = 5;
086. 
087.            if (item.Start == AdjustedTimelineStart)
088.            {
089.                if (item.Start.Minute % 5 > 0)
090.                {
091.                    minutes = 10 - (item.Start.Minute % 5);
092.                }
093.            }
094. 
095.            if (item.End == AdjustedTimelineEnd)
096.            {
097.                if (item.End.Minute % 5 > 0)
098.                {
099.                    minutes = item.End.Minute % 5;
100.                }
101.            }
102. 
103.            return new GanttTimelineCellsInfo(minutes);
104.        }
105. 
106.        public override string GetTimelineTopElementText(GanttViewTimelineDataItem item)
107.        {
108.            if (item.Range != TimeRange.Custom)
109.            {
110.                return base.GetTimelineTopElementText(item);
111.            }
112. 
113.            string format = "{0} - {1}";
114. 
115.            return string.Format(System.Threading.Thread.CurrentThread.CurrentUICulture, format, item.Start, item.End);
116.        }
117. 
118.        public override string GetTimelineBottomElementText(GanttViewTimelineDataItem item, int index)
119.        {
120.            if (item.Range != TimeRange.Custom)
121.            {
122.                return base.GetTimelineBottomElementText(item, index);
123.            }
124. 
125.            string format = "{0:hh:mm}";
126. 
127.            return string.Format(System.Threading.Thread.CurrentThread.CurrentCulture, format, new DateTime(item.Start.Minute + index, 1, 1));
128.        }
129.    }
130.}

 

Hristo
Telerik team
 answered on 19 Sep 2018
14 answers
173 views

     Hey guys, I'm trying to add a QuickStart(TextBox with Autocomplete) to the Title Bar, like visual studio 2017. I've tried adding a RadTextBoxElement, but I couldn't even enter text on it, any help? But of course I wanna it beatiful, like Visual Studio, changing border colors and back color. I've attached how it is on VS and how it is on mine.

The button is a RadButtonElement.

Leandro
Top achievements
Rank 1
 answered on 18 Sep 2018
4 answers
194 views

Hello Telerik Team !

I currently try to achieve something similar to the attached picture.

Maybe I took the wrong direction, by using a MaskedEditBox with a DateTime MaskType, I am trying to add an adjacent button picture to open a calendar, and also a drop down button with several standard choice.

By editing UI Elements I notice the presence of a StackLayoutPanel with LightVisualButtonElement, I put both Visibility to Visible and add a little calendar icon image.

I can see It on Visual Studio, but the icon does not appear when I launch the program, and also I don't have any idea what kind of event I need to add if I succeed in showing the icon to open a calendar control to select my date.

So maybe I took a wrong direction by using this controls ?

Any help or suggestion would be highly welcome

 

Thanks in adavnce

 

Jeff

Jeff
Top achievements
Rank 1
 answered on 18 Sep 2018
3 answers
277 views
Hi

I'm using Office2010SilverTheme. The Font of UI Controls in English and Farsi culture is different.
Where is this default is set? How can I set a new Font for controls in Farsi culture?

Cheers
Hristo
Telerik team
 answered on 18 Sep 2018
1 answer
103 views

Hi there,

I've used Telerik grid inside an application.

I wanna to do something when the user changes the order of column groups (column group 1 and column group 2) by dragging them using a mouse. but I didn't find any solution for this.

 

So is there any event to detect reorder change for "column group"? 

Dess | Tech Support Engineer, Principal
Telerik team
 answered on 18 Sep 2018
3 answers
245 views

I want users to be able to modify columns width, order, pinned state, ... But at the same time, I have two grids in the same form one above the other and I would like to sync layout of both.

 

I have tried to use somthing like this, but it is not working:

            foreach (var col in this.grid1.Columns)
            {
                this.grid2.Columns.Add(col);
            }

Dess | Tech Support Engineer, Principal
Telerik team
 answered on 18 Sep 2018
1 answer
192 views

how to insert data to live data ?

how to give background / fill color in live data chartview ?

 

 

Dess | Tech Support Engineer, Principal
Telerik team
 answered on 18 Sep 2018
6 answers
1.0K+ views
Is there anyway to replicate this event in a RadGridView? I relied on this heavily for pushing user "checks" (CheckBoxCells) to the database with the standard DataGridView control, and I couldn't find anything similar with the RadControls. Here is a sample of what I would do with the event:

void dataGridView_CurrentCellDirtyStateChanged(object  sender, EventArgs  e)
{       
     if ((dataGridView.IsCurrentCellDirty) & (dataGridView.CurrentCell.ColumnIndex == 0))
     {
          dataGridView.CommitEdit(DataGridViewDataErrorContexts.Commit);
     }
}
Dimitar
Telerik team
 answered on 18 Sep 2018
4 answers
108 views

Hello,

Is it possible to display a RadGridView inside a cell? The grid should take data from cell (data will be splitted by columns and rows, not many, just a couple of rows per cell, 3 columns) I was considering examples of custom cells provided but without success. Could I get any clues how to proceed if it is feasible at all, please?

Thanks

Wojciech

Dimitar
Telerik team
 answered on 18 Sep 2018
2 answers
1,000 views

I have several textboxes with the option to show clear button enable but I want to shoe the clear button only when a textbox is active by the user. Can this be done?

Carlos
Top achievements
Rank 1
 answered on 17 Sep 2018
Narrow your results
Selected tags
Tags
GridView
General Discussions
Scheduler and Reminder
Treeview
Dock
RibbonBar
Themes and Visual Style Builder
ChartView
Calendar, DateTimePicker, TimePicker and Clock
DropDownList
Buttons, RadioButton, CheckBox, etc
ListView
ComboBox and ListBox (obsolete as of Q2 2010)
Chart (obsolete as of Q1 2013)
Form
PageView
MultiColumn ComboBox
TextBox
RichTextEditor
PropertyGrid
Menu
RichTextBox (obsolete as of Q3 2014 SP1)
Panelbar (obsolete as of Q2 2010)
PivotGrid and PivotFieldList
Tabstrip (obsolete as of Q2 2010)
MaskedEditBox
CommandBar
PdfViewer and PdfViewerNavigator
ListControl
Carousel
GanttView
Diagram, DiagramRibbonBar, DiagramToolBox
Panorama
New Product Suggestions
Toolstrip (obsolete as of Q3 2010)
VirtualGrid
AutoCompleteBox
Label
Spreadsheet
ContextMenu
Panel
Visual Studio Extensions
TitleBar
Documentation
SplitContainer
Map
DesktopAlert
CheckedDropDownList
ProgressBar
TrackBar
MessageBox
Rotator
SpinEditor
CheckedListBox
StatusStrip
LayoutControl
SyntaxEditor
Wizard
ShapedForm
TextBoxControl
Conversational UI, Chat
DateTimePicker
CollapsiblePanel
TabbedForm
CAB Enabling Kit
GroupBox
WaitingBar
DataEntry
ScrollablePanel
ScrollBar
ImageEditor
Tools - VSB, Control Spy, Shape Editor
BrowseEditor
DataFilter
ColorDialog
FileDialogs
Gauges (RadialGauge, LinearGauge, BulletGraph)
ApplicationMenu
RangeSelector
CardView
WebCam
Barcode
BindingNavigator
PopupEditor
RibbonForm
Styling
TaskBoard
Callout
ColorBox
PictureBox
FilterView
NavigationView
Accessibility
VirtualKeyboard
DataLayout
ToastNotificationManager
ValidationProvider
CalculatorDropDown
Licensing
Localization
TimePicker
ButtonTextBox
FontDropDownList
BarcodeView
BreadCrumb
Security
LocalizationProvider
Dictionary
Overlay
Flyout
Separator
SparkLine
TreeMap
StepProgressBar
SplashScreen
ToolbarForm
NotifyIcon
DateOnlyPicker
Rating
TimeSpanPicker
Calculator
OfficeNavigationBar
TaskbarButton
HeatMap
SlideView
PipsPager
AIPrompt
TaskDialog
TimeOnlyPicker
+? more
Top users last month
Rob
Top achievements
Rank 3
Iron
Iron
Iron
Atul
Top achievements
Rank 1
Iron
Iron
Iron
Alexander
Top achievements
Rank 1
Veteran
Iron
Serkan
Top achievements
Rank 1
Iron
Shawn
Top achievements
Rank 1
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Rob
Top achievements
Rank 3
Iron
Iron
Iron
Atul
Top achievements
Rank 1
Iron
Iron
Iron
Alexander
Top achievements
Rank 1
Veteran
Iron
Serkan
Top achievements
Rank 1
Iron
Shawn
Top achievements
Rank 1
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?