Hi,
some time ago I wrote a custom GridEditor using a TextBoxControlElement with AutoComplete = Suggest.
It works fine but now i need to change the auto complete logic using Contains instead of StartsWith.
I know how to do this in a DropDownList or in a DropDownListElement but can't find a way to get this behaviour in a TextBoxControl and don't want to change the TextBoxControlElement with a DropDownListElement hiding the arrow button.
How can I have a 'contains' AutoComplete in a TextBoxControls ?
Regards
Hello
In a hierarchical GridView I always get a expand button even if the entry has no sub entries. How can I hide it when it has no sub entries?
Thank you very much
Marco
Sorry if this is a bad question but I want to configure the grid lines in the RadGridView. This Post https://www.telerik.com/forums/change-color-of-the-grid---radgridview says I have to use Visual Style Builder and edit the theme.... Do I really have to dig into this massive thing?! Thats a total overload...? All I want is to configure the grid lines?
I'm trying to figure out how to create some padding inside the coordinate space of the chart. Things I have done:
Set categorical axis axisplotmode to OnTicksPadded
Increased Padding on Chart.View.Margins (this seems to be the padding between the chart itself and stuff outside the chart)
See the picture below for an example. Basically datapoints aren't fully displaying because the points are being cutoff because the last Y-axis Tick is literally at the same Y location as the top of the chart. I'd like to move it down a bit to give the datapoints some space. Essentially create extra space around the edges of the axes. I have one axes that's a categorical axis and one that's a linear axis.

Create BarSeries:
_barModel = new BarSeries
{
ValueMember = "Model",
CategoryMember = "N",
LegendTitle = "Model",
IsVisible = false
};
_radChartViewGss.Series.Add(_barModel);
Set data source (dataTable):
_radChartViewGss.DataSource = _table;
After this, changing the property _barModel.IsVisible = true does not lead to anything - the bar series is not visible.
Why???

Hi.
Probably an easy question, but trying for a while, searching in the doc and the forum, I could not find the solution.
When I use a legend in radchartview, it shows the items below each other (vertically). But I would like to show them next to each other (horizontally).
Among others, I tried:
this.radChartView2.ChartElement.LegendElement.TextOrientation = Orientation.Horizontal;
or
this.radChartView2.ChartElement.LegendElement.StackElement.TextOrientation = Orientation.Horizontal;
But it does not seem to work...
Thank you

Hey, is there a way to change the popup location of RadDropDownButton? I'm currently trying to put it over the button and at the right side. See screenshot to know what I mean. It's is not showing correctly because the edge of the screen.
I've tried setting the popup bound but it don't work
btnOpcoesTela.DropDownButtonElement.DropDownMenu.PopupOpened += DropDownMenu_PopupOpened;private void DropDownMenu_PopupOpened(object sender, EventArgs args) { var popup = sender as RadDropDownButtonPopup; popup.SetBounds(10, 5, popup.Width, popup.Height); }