Telerik Forums
UI for WinForms Forum
1 answer
177 views

Using the Chart that comes with Visual Studios I can set the Hatch Style of a particular column with the code below. I need to know how to do the same using the RadChartView.

                                this.ChtEvolution.Series[0].Points[16].BackHatchStyle = ChartHatchStyle.BackwardDiagonal;
                                this.ChtEvolution.Series[1].Points[16].BackHatchStyle = ChartHatchStyle.BackwardDiagonal;
                                this.ChtEvolution.Series[2].Points[16].BackHatchStyle = ChartHatchStyle.BackwardDiagonal;
                                this.ChtEvolution.Series[3].Points[16].BackHatchStyle = ChartHatchStyle.BackwardDiagonal;
                                this.ChtEvolution.Series[4].Points[16].BackHatchStyle = ChartHatchStyle.BackwardDiagonal;
                                this.ChtEvolution.Series[5].Points[16].BackHatchStyle = ChartHatchStyle.BackwardDiagonal;

 

Hristo
Telerik team
 answered on 29 Aug 2017
1 answer
277 views

Hi,

I am trying to make a DateTimePicker readonly and having limited success. A forum search returns a ton of candidate workarounds for this, but some of them stretch back to 2009 and it is very difficult to figure out whether these workarounds are still valid, supported, required or optimal with the latest release.

I am trying to suppress input (either keyboard, mouse, direct input or via the calendar dropdown) for a datetimepicker and the logical approach would seem to be to set the ReadOnly property to true, but this doesn't appear to have any effect.

The most common approach on the forums (from 2009 onwards) is to set the control to disabled and then fudge the styling to make it match other readonly controls, which is the approach we have taken in the past. However we are currently refactoring our control code with a view to simplifying it by removing any overly complicated hacks and fudges, so ideally this is an approach we are looking to replace.

Many of the posts recommending this approach are over 8 years old, so I am hoping this has been superseded but I am again struggling to achieve this intuitively with the latest control release.

Is there a way to set the control to readonly rather than disabled, or is the styling approach still the recommended solution?

Thanks,

Mark.

 

Hristo
Telerik team
 answered on 29 Aug 2017
1 answer
608 views
I would like to use the commandBar, and have it not overlap a docked control, as you can see in the attached image, it covers the first line of text.

How would one accomplish this?
Dess | Tech Support Engineer, Principal
Telerik team
 answered on 29 Aug 2017
5 answers
583 views
first see the attach file so that you could picture out the things I wanted to do.

I been using RadRibbon Form as the Parent MDI and RadDocking technology.
When the user click a button to open another form, the newly opened rad ribbon form will be display directly under the rad dock.

The newly opened rad ribbon form, I wanted that this ribbon will be displayed in the Parent Ribbon as Contextual Tab and their command tabs.
And only the panel or what ever controls will remain in the rad dock.


If ever this is not possible, what controls/forms that can I put in the rad dock? Considering that this controls is a base window.


Valentino
Top achievements
Rank 1
 answered on 29 Aug 2017
2 answers
192 views

Hi, Is there any way to change the background color in some specific column when the user does click on "Add new row" text.? I can change the color after the row was added but I don't know if its possible.

 

Something like this.

 

Miguel Angel
Top achievements
Rank 1
Iron
 answered on 28 Aug 2017
1 answer
136 views

Separately, the comboBoxs work fine, but they do not want to do it together, but at the time of loading it gives an error: an entry with this key already exists on the radGridView5.Columns [3] = comboColumn_operation ;.
Downloading occurs once

radGridView5.Invoke(new MethodInvoker(delegate ()             {                 radGridView5.AutoSizeRows = true;                 radGridView5.DataSource = _bindingSocOperationGrid;                   GridViewComboBoxColumn comboColumn = new GridViewComboBoxColumn("соц. работник");                 comboColumn.DataSource = _bindingSocRabotnik;                 radGridView5.Columns[1] = comboColumn;                 comboColumn.FieldName = "fio";                   GridViewComboBoxColumn comboColumn_operation = new GridViewComboBoxColumn("операция");                 comboColumn_operation.DataSource = _bindingSocOperation;                 radGridView5.Columns[3] = comboColumn_operation;                 comboColumn_operation.FieldName = "operation";             }));

Dess | Tech Support Engineer, Principal
Telerik team
 answered on 28 Aug 2017
4 answers
860 views

I would like create Finical chart to update real time data, let say every 1 second. I have create a small application with CandlestickSeries type and timer to add data point to chart. i also attached my code to this post.

Questions:

- please look at video, chart keep re-render and keep refreshing. Is that a way that to prevent hold chart refreshed? (I think that Vertical Axis no need to render).

- I would like to build a chart to let use scroll back to see last hour data but on current screen i would liek to show only last 2 mins data. Is that a sample to resolve the requirements?

 

Please help

Regards

Hristo
Telerik team
 answered on 25 Aug 2017
1 answer
457 views

I have 5 Collapsible panels, all are lined up unexpanded on the right side of my screen.  When I run my program and expand the top panel, I would expect the others to move down to the bottom of the expanded first panel.

 

Please advise how to accomplish this

Dimitar
Telerik team
 answered on 25 Aug 2017
8 answers
218 views

It looks like the Browsable attribute, which I use on a data model class property to hide it from the properties grid, also stops the property from being used by the Diagram control.

e.g. if my 'x co-ord' property is as below, then all my objects in the diagram have their X position at 0.

[Browsable(false)]
public int ScrnW
{
    get { return _scrnW; }
    set { _scrnW = value; OnPropertyChanged("ScrnW"); }
}

 

Is there a way I can either hide properties from the properties grid in another way, or make the Diagram able to use these properties regardless of being Browsable? I should think the latter, as I am explicitly telling the Diagram control to use specific properties, but that request is ignored.

Thanks

Valentino
Top achievements
Rank 1
 answered on 24 Aug 2017
3 answers
457 views

I have diagram elements that are just text, and I noticed there's a RadDiagramTextShape so I'm using that. What I'm wondering is how to set the text alignment within the bounds. Currently the text is always centered, but I'd like to set it to Left or Right also. I've seen HorizontalAlignment and HorizontalContentAlignment properties but that's the closest I could find.

Thanks.

Valentino
Top achievements
Rank 1
 answered on 24 Aug 2017
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)
Form
Chart (obsolete as of Q1 2013)
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
PdfViewer and PdfViewerNavigator
CommandBar
ListControl
Carousel
GanttView
Diagram, DiagramRibbonBar, DiagramToolBox
Panorama
New Product Suggestions
VirtualGrid
Toolstrip (obsolete as of Q3 2010)
Label
AutoCompleteBox
Spreadsheet
ContextMenu
Panel
Visual Studio Extensions
TitleBar
SplitContainer
Documentation
Map
DesktopAlert
CheckedDropDownList
ProgressBar
MessageBox
TrackBar
Rotator
SpinEditor
CheckedListBox
StatusStrip
Wizard
CollapsiblePanel
LayoutControl
ShapedForm
SyntaxEditor
TextBoxControl
Conversational UI, Chat
DateTimePicker
TabbedForm
CAB Enabling Kit
WaitingBar
GroupBox
DataEntry
ScrollablePanel
ScrollBar
ImageEditor
Tools - VSB, Control Spy, Shape Editor
BrowseEditor
DataFilter
FileDialogs
ColorDialog
Gauges (RadialGauge, LinearGauge, BulletGraph)
ApplicationMenu
RangeSelector
CardView
WebCam
NavigationView
BindingNavigator
RibbonForm
Styling
Barcode
PopupEditor
TaskBoard
Callout
ColorBox
PictureBox
FilterView
Accessibility
VirtualKeyboard
DataLayout
Licensing
ToastNotificationManager
ValidationProvider
CalculatorDropDown
Localization
TimePicker
BreadCrumb
ButtonTextBox
FontDropDownList
BarcodeView
Overlay
Security
LocalizationProvider
Dictionary
TreeMap
StepProgressBar
SplashScreen
Flyout
Separator
SparkLine
ToolbarForm
NotifyIcon
DateOnlyPicker
AI Coding Assistant
Rating
TimeSpanPicker
Calculator
OfficeNavigationBar
TaskbarButton
HeatMap
SlideView
PipsPager
AIPrompt
TaskDialog
TimeOnlyPicker
SpeechToTextButton
SmartPasteButton
+? more
Top users last month
Shiori
Top achievements
Rank 2
Iron
Tien
Top achievements
Rank 1
Iron
Robert
Top achievements
Rank 1
Rob
Top achievements
Rank 4
Bronze
Bronze
Iron
Geoff
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Top users last month
Shiori
Top achievements
Rank 2
Iron
Tien
Top achievements
Rank 1
Iron
Robert
Top achievements
Rank 1
Rob
Top achievements
Rank 4
Bronze
Bronze
Iron
Geoff
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?