<
Trigger
Property
=
"TabStripPlacement"
Value
=
"Bottom"
>
<
Setter
Property
=
"telerik:RadDockPanel.Dock"
Value
=
"Bottom"
TargetName
=
"HeaderDockedElement"
/>
<
Setter
Property
=
"LayoutTransform"
TargetName
=
"HeaderDockedElement"
>
<
Setter.Value
>
<
RotateTransform
Angle
=
"180"
/>
</
Setter.Value
>
</
Setter
>
<
Setter
Property
=
"BorderThickness"
Value
=
"1 1 1 0"
/>
</
Trigger
>
public class RadGridViewSampleData { public RadGridViewSampleData() { Cars = new ObservableCollection<Car>(); } public ObservableCollection<Car> Cars { get; set; } }
Good evening,
Is it possible to assign tags to the "Span" element in a RadDocument (or something similar)?
For example :
<
telerik:Span
Tag
=
"myValue"
Text
=
"Hello world"
/>
I'm trying to construct a document where the data is drawn from a database. Some how I need to assign a value to each span so that I can identify which database row ID it belongs to. Quite difficult to explain.
Thank you for your time,
Rob
telerikGrid:RadGridViewCommands.CancelRowEdit
" ortelerikGrid:RadGridViewCommands.CommitEdit"
<
telerik:RadButton
Width
=
"Auto"
Content
=
"save changes"
Margin
=
"0,0,5,0"
Command
=
"telerikGrid:RadGridViewCommands.CommitEdit"
CommandTarget
=
"{Binding ElementName=VerbindungenRADGRID}"
Padding
=
"5"
/>
<
telerik:RadButton
Width
=
"Auto"
Content
=
"undo changes"
Command
=
"telerikGrid:RadGridViewCommands.CancelRowEdit"
CommandTarget
=
"{Binding ElementName=VerbindungenRADGRID}"
Padding
=
"5"
/>
Hi,
I need to build a vertical bar chart that needs to be refreshed every second.
See attached file to check what I got until now.
The RadChart is bound to a Queue<int> that is refreshed every second.
The problem is that the BarSeries doesn’t get updated.
I manage to force it to be updated by calling RadChar.Rebind() method.
But it redraw the BarSeries instead of updating it.
Could you help me on this?
Thanks,
Hugo.