Hi,
I am working on an application where I have to display the Current Time Indicator in UTC but there is no option or property to set it on the control.
Is there a way to do this? Do you plan to have this in the next release (The R2 2017 release of UI for WPF)?
I found a similar issue here: http://www.telerik.com/forums/currenttimeindicator-in-utc
Kind regards,
Soares
Hello everybody,
I have a RaDiagram which will be filled via MVVM.
Additionally my shapes and connections have custom properties - for the sake of convenience let's say every shape has a status property.
I customized the SettingsPane, so when entering a shape's SettingsPane I have a checkbox which changes the status property of the shape.
Checked -> shape.status = 1
Unchecked -> shape.status = 0
This is working fine.
Additionally I have a flag in my ViewModel which will be updated after the status change, so that my CanExecuteUndoCommand will set
1.
e.CanExecute =
True
2.
e.Handled =
True
Unfortunately the UndoRedoStack of the diagram tells me that there is nothing in the stack.
Hello Team,
I am getting 2 times row loaded getting fired in my application. How to handle this problem.
More detail : First time e.Row is GridViewHeaderRow and Second time e.Row is GridViewFooterRow.. But we are not using Footer row in our application.
How to handle this situation any help .
Thanks,
Sundar M.
itemsSource.Add(
new
Rap1DDataPoint(valuesX[i], valuesY[i],curve.CurveName));
public
class
Rap1DDataPoint : DataPoint
{
public
string
CurveName {
get
;
set
; }
public
Rap1DDataPoint(
double
x,
double
y,
string
curveName):
base
(x,y)
{
CurveName = curveName;
}
}
var lineSeries =
new
ScatterLineSeries
{
ShowLabels =
true
,
ToolTip = legendHeader,
Stroke = serieColor,
StrokeThickness = 2,
//LegendLabel = legendHeader,
//SeriesDefinition = splineSeriesDefinition,
ItemsSource = itemsSource,
XValueBinding =
new
PropertyNameDataPointBinding(
"XValue"
),
YValueBinding =
new
PropertyNameDataPointBinding(
"YValue"
),
PointTemplate = pointTemplate
};
Hi,
I want to achieve a radgrid view with nested collection. The twist is binding should create a new column and not like row details.
E.g. My data looks like
List<class1> lstObj1 = new List<class1>();
public class1
{
public string name;
public string id;
public List<class2> objClass2List = new List<class2>();
}
public class2
{
public string sub1;
public string sub2;
}
View should be like as attached:
Hi, I've got a situation where I need a chart to create a new line series based on user selection (i.e., user selects 3 Employees from a list of 10 to compare, and then the chart will show 3 Line series, each corresponding to the respective employee's annual revenue to date).
Most of the examples rely on code-behind to create a new SeriesMapping and then add it to the chart's list of mappings. I'm curious if there would be any declarative way to account for a varying number of Series on a chart, similar to a DataTemplate used for other controls. To bind the number of Series to a collection where each Series binds to a sub-collection.
Here's a grid I have working for just one series:
<
telerik:RadChart
Name
=
"LapTimes"
DataContext
=
"{Binding SelectedEmployees}"
ItemsSource
=
"{Binding Employee.SalesList}"
>
<
telerik:RadChart.SeriesMappings
>
<
telerik:SeriesMapping
LegendLabel
=
"Employee"
>
<
telerik:SeriesMapping.SeriesDefinition
>
<
telerik:LineSeriesDefinition
ShowItemLabels
=
"False"
>
</
telerik:LineSeriesDefinition
>
</
telerik:SeriesMapping.SeriesDefinition
>
<
telerik:SeriesMapping.ItemMappings
>
<
telerik:ItemMapping
FieldName
=
"SalesNum"
DataPointMember
=
"XValue"
/>
<
telerik:ItemMapping
FieldName
=
"SalesValue"
DataPointMember
=
"YValue"
/>
</
telerik:SeriesMapping.ItemMappings
>
</
telerik:SeriesMapping
>
</
telerik:RadChart.SeriesMappings
>
</
telerik:RadChart
>
I have some functionality that I would like to have included in every instance of RadGridView in my application. This is on two events, DistinctValuesLoading and FilterOperatorsLoading.
I tried adding them via EventSetters in a global Style ResourceDictionary, but I'm getting error saying that they are not Routed Events.
Is there another way to do this, or do I need to just add the functionality manually to every instance?
I have a setup that each row detail contains a child gridview, and when parent row is expanded, the child gridview should show all its rows, ie. no scrollbar because we don't want "double" scrollbars.
The issue is when the child gridview has many rows (in our case, 100), it takes a while (~6s) from expand the parent row to display all children rows.
Do you have any tips to speed up this scenario?