Xaxis Label offset if Yaxis set to negative Version 2017.3.913.45
Scenario
Yaxis datasource range [0-30]
HtmlChart.PlotArea.YAxis.MinValue = -1;

Hello!
I use Grid with window editing mode,
and find a demo of window editing issue,
I opened the edit window many times,the height of the window will -1 every time.
you can click the edit link 6 times, the window content will show the scrollbar, window editing demo
how can I open the window without change the height every time?
thanks!
Hi Telerik support
This is Edge browser specific issue. Radwindow opens almost 5px to right from the left edge of the content page. It works perfectly in other browsers.
We have also tried window.center(), but no luck. Can you please advise how to fix this issue?
Thanks.
Hello,
I'm trying to develop Asp.NET project and I use RadComboBox. I want to use filter='Contains' in Combo. But i have a problem with searching (uppercase İ) turkish characters. In.aspx file, i use css uppercase in combo. And i'm trying to filter with (İ) doesnt match anything. But i enable Caps Lock, and i'm trying to filter with (İ) i get the result.
We use automatic load on demand for the RadComboboxes, still the performance is slow.
Will the performance be improved if we try Loading items from a Web Service approach?
Small Docs issue on https://docs.telerik.com/devtools/aspnet-ajax/controls/combobox/client-side-programming/events/onclienttextchange
The OnClientTextChange client-side event occurs when the user enters custom text in the input field of RadComboBox (if AllowCustomText property is True). OnClientTextChange doesn't fire until the user hits Enter or clicks outside the combobox.
I discovered that clicking outside the box does not fire this event.
Marc

the dataitem did not pass to client side if dataitem is not in X/Y.
datasource {"Vendor", "AppName", "Qty", "Date"}
Line chart: Xasix (Date), Yasix(Qty)
<telerik:RadHtmlChart runat="server" ID="RadHtmlChart1" Width="100%" Height="400px">
<ClientEvents OnSeriesClick="RadHtmlChart1_OnSeriesClick" />
</telerik:RadHtmlChart>
function RadHtmlChart1_OnSeriesClick(e) {
alert(e.dataItem['Vendor']); // return undefined
}
