Hi Everyone , I have some problem for set Space Beetween Point Y, i want to set space look the image,
this is source code
private void DrawRadChartViewLine(RadChartView p_oRadChartView, bool bIsGrey)
{
p_oRadChartView.AreaType = ChartAreaType.Cartesian;
p_oRadChartView.Series.Clear();
#region Config New Chart Series
LineSeries series = new LineSeries();
series.CategoryMember = "MonthName";
series.ValueMember = "TotalAsset";
series.DataSource = lDataLine;
series.PointSize = new SizeF(7, 7);
series.SmoothingMode = System.Drawing.Drawing2D.SmoothingMode.HighQuality;
series.Padding = new Padding(20);
series.IsVisible = true;
p_oRadChartView.Series.Add(series);
#endregion
#region Grid Area Formatting
CartesianArea area = p_oRadChartView.GetArea<CartesianArea>();
area.ShowGrid = true;
CartesianGrid grid = area.GetGrid<CartesianGrid>();
grid.Size = new Size(970, 160);
grid.SmoothingMode = System.Drawing.Drawing2D.SmoothingMode.HighQuality;
grid.DrawHorizontalFills = true;
grid.DrawHorizontalStripes = true;
grid.DrawVerticalFills = true;
grid.DrawVerticalStripes = false;
grid.ForeColor = Color.FromArgb(239, 229, 216); //228, 210, 190
grid.Padding = new Padding(15);
grid.BorderDashStyle = System.Drawing.Drawing2D.DashStyle.Dot;
grid.BorderWidth = 3.5f;//2.5f;
if (bIsGrey)
{
area.Grid.BackColor = Color.FromArgb(246, 246, 246);
area.Grid.BackColor2 = Color.FromArgb(246, 246, 246);
area.Grid.AlternatingBackColor = Color.FromArgb(246, 246, 246);
area.Grid.AlternatingBackColor2 = Color.FromArgb(246, 246, 246);
}
else
{
area.Grid.BackColor = Color.FromArgb(252, 249, 247);
area.Grid.BackColor2 = Color.FromArgb(252, 249, 247);
area.Grid.AlternatingBackColor = Color.FromArgb(252, 249, 247);
area.Grid.AlternatingBackColor2 = Color.FromArgb(252, 249, 247);
}
#endregion
}
i hope someone in this forum can help me..
thanky,, Regards Genda..

How can i make a HTML Syntax Highlight Tagger for Syntax Editor. Can anyone please help.
Thank you.

Hi,
Is there any way to change the background color of a callout control without using a rad theme ?
thx in advance...


Hi
I have found examples showing how to use a RadProgressBarElement in a grid column. I added one to my project and it is working, well almost.
If all my values are positive (ie between 0 and 100), the column shows correctly.
But my values are between -100 and 100. I have set the Minimum property to -100. I see some values with a red zone (which is ok). But shouldn't the green zone only start at 0 (right in the middle)?

Hi, can I use callout control to display additional information, from a datagridview cell instead of a tooltip ?
if yes can u leave a sample please...
thx in advance,
Regards


We are having an odd issue with the RadGrid component on build 2021.2.511.40
We have isolated the issue down to the base component in a sample project and the issue still occurs. I have attached the Sample project.
Steps to reproduce:

RadCallout is like a tooltip with an arrow that can be used to display additional information, warnings, hints, or to highlight relevant data. The appearance of the control can be fully customized to satisfy the needs of your scenarios.
Get familiar with it: https://docs.telerik.com/devtools/winforms/controls/callout/overview

I have a problem about the donut chart and the labels that are displayed ..
How do I organize and display labels that are not drawn due to the previously set space, so that they become visible? thank you, I hope someone finds a solution to this problem ..