Hi,
is there a way to fix / freeze grand total row on top of pivot grid while scrolling? I don´t find a way to achive this behavior.
Thanks
Daniel
Hello,
var rowList =
gridControl.ChildrenOfType<GridViewRow>();
var emloyeeRowList = rowList.Where(x => (x.DataContext
is
AppointmentInfo) && (x.DataContext
as
AppointmentInfo).EmployeeId == employeeId).ToList();
If emloyeeRowList.Count is 2,and i insert a same employeeId AppointmentInfo to the ItemsSource of the GridView.The emloyeeRowList.Count is still 2.
When is the emloyeeRowList.Count 3? Or which event should i used to get the emloyeeRowList.Count 3?
Is it possible to set the Scrollbars mode on a single control (not the whole app)?
FluentPalette.Palette.ScrollBarsMode
= ScrollViewerScrollBarsMode.Compact;
Thanks,
Richard
I've read in the docs that RadChart supports charts with multiple areas for its series. Is there any way to get something similar in RadChartView?
In case it helps, what I'm trying to achieve is to "stack" vertically different series (candlestick, lines, bars) sharing one common horizontal axis but each with its individual vertical axis.
Hello,
in my code I want to set the MajorTickLength.
But if I do that, the Visual Studio Designer freeze or crashed with a Out of Memory Exception.
<controls:RadScheduleView x:Name="MapScheduleView" Grid.Row="0" Grid.Column="0" Grid.ColumnSpan="2"
NavigationHeaderVisibility="Collapsed"
MinAppointmentHeight="5"
>
<controls:RadScheduleView.ActiveViewDefinition>
<controls:TimelineViewDefinition MinTimeRulerExtent="1" MaxTimeRulerExtent="Infinity" ShowTimeRuler="False"
StretchAppointments="True" StretchGroupHeaders="True">
<controls:TimelineViewDefinition.MajorTickLength>
<provider:OneYearTick/>
</controls:TimelineViewDefinition.MajorTickLength>
</controls:TimelineViewDefinition>
</controls:RadScheduleView.ActiveViewDefinition>
</controls:RadScheduleView>
The tick provider:
public class OneYearTick : ITickProvider
{
public string GetFormatString(IFormatProvider formatInfo, string formatString, DateTime currentStart)
{
return string.Empty;
}
public DateTime GetNextStart(TimeSpan pixelLength, DateTime currentStart)
{
return currentStart.AddYears(1);
}
}
Telerik Version: 2020.2.513.45
Best regards
Hi Telerik,
Do you have any report view control or similar control in WPF.net core which can connect to SSRS (2012 version and above) and view RDLC or local report?
Thanks,
Best Regards,
Loon
I'm am trying to create a search with Watermark Text Box and have a clear button at the end. The problem is that I can't get the background of the button to be transparent.
This is the code that I am using:
<
telerikControls:RadWatermarkTextBox
Name
=
"SearchBox"
Text
=
"{Binding SearchControl.SearchText, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}"
Width
=
"250"
>
<
telerikControls:RadWatermarkTextBox.WatermarkContent
>
<
StackPanel
Orientation
=
"Horizontal"
>
<
telerikControls:RadGlyph
Glyph
=
""
Margin
=
"0 3 0 0"
/>
<
TextBlock
Margin
=
"3,3,0,0"
Text
=
"Search"
/>
</
StackPanel
>
</
telerikControls:RadWatermarkTextBox.WatermarkContent
>
<
telerikControls:RadWatermarkTextBox.AdditionalContent
>
<
telerikControls:RadButton
Focusable
=
"False"
IsBackgroundVisible
=
"False"
Command
=
"telerikControls:RadWatermarkTextBoxCommands.Clear"
CommandTarget
=
"{Binding ElementName=SearchBox}"
ToolTip
=
"Clear"
>
<
telerikControls:RadGlyph
Glyph
=
""
/>
</
telerikControls:RadButton
>
</
telerikControls:RadWatermarkTextBox.AdditionalContent
>
</
telerikControls:RadWatermarkTextBox
>
I have also tried to use Background="Transparent" but that still doesn't work.
I have also noticed that IsBackgroundVisible aslo doesn't work on buttons outside of the Watermark Text Box.
I have attached a photo of how the search box looks.
When I run the Groups demo in the Gauge_WPF solution (no modifications), the linear / vertical gauge group doesn't look anything like what it's supposed to:
(screenshot attached)
Can you pls. clarify how to fix this?