Winforms. Jan 2022 software version.
I'm converting a very old version of teechart chart into Telerik RadChartView
What I'm seeing is this
What I want is, as in the following chart, where the stacked bars are overlayed with a trend line.
In the above, the stacked bar and line series are both using the same horizontal category axis but the line chart is following on from, rather than overlaying the stacked bars. I did try creating a 2nd category axis but then the auto scaling of the 2nd axis wasnt the same as the first. Stacking the line series didn't work either
How do I fix this please? There's only 2 points defined for the trend chart.
Hi. Winforms. telerik Version=2022.1.118.40.
I'm trying to migrate an old TeeChart across to radchartview as part of moving 3rd party components to support 64 bit. Ive included the teechart and radchartview screen shots and a small app I extracted from my main solution. The data used to produce each chart is in the app although I stripped out the trend line. Mad colours used to highlight the zones. I've not worked on telerik version very much until I can see something that looks correct.
Chart is supposed to represent performance/compliance in exercising. Under + Normal should add up to 100%. Over represents over performance. I use "under" as the chart needs to highlight zero as a valid column.
I can't understand the mad chart I'm seeing.
Hello,
i have a RadGridView with a TableAdapter.
The TableAdapter is Filled with a View from a SQL Database.
In a 2. Form i modified the data with a Updatecommand.
How can i update the Data in the 1 Form/GridView??
Here my Code.
Private Sub BindingNavigatorSaveItem_Click(sender As Object, e As EventArgs) Handles BindingNavigatorSaveItem.Click
'Try
If ValidateChildren() = False Then
Exit Sub
End If
Me.ObjektdatenBindingSource.EndEdit()
Me.ObjektdatenTableAdapter.UpdateObjekt(txtObjektname.Text, rdlStrassen.Text, txtHausnummer.Text, txtPLZ.Text,
txtOrt.Text, System.DateTime.Now, CInt(rdlBegehungsintervall.SelectedValue), txtMeldernummer.Text,
picObjekt.ImageLocation, CInt(rdlobjekttyp.SelectedValue), CInt(rdlsachgebiet.SelectedValue),
rdpletzteFeuerbeschau.Value, rdpNaechsteFeuerbeschau.Value, CInt(lblObjektNr.Text))
objekte.V_objektdatenTableAdapter.Fill(objekte._Benutzer.v_objektdaten)
'Catch ex As Exception
'Console.WriteLine(ex.Message)
'End Try
End Sub
V_objektdatenTableAdapter is the Adapter in the 1. Form
Thanks Udo
I could not find Shape tool in RadRichTextBox under insert in menu bar.
Please find attached.
I'm using the new TreeMap control and when I change the font to say Segoe UI 12 - for the boxes - it doesn't seem to have any effect.
So, I searched for the common VisualItemFormatting method but it does not exist on this control.
How can I change the text in the boxes and perhaps use HTML formatting as well?
I have a RadGridView using cell Template have another radgrid causing vertical scroll lose postion when move horizontal scroll bar.
<telerik:RadGridView Height="500" ItemsSource="{Binding XyzData}" AutoGenerateColumns="False" CanUserDeleteRows="False"
CanUserInsertRows="False" EditTriggers="None" CanUserSelect="False" RowIndicatorVisibility="Collapsed"
GroupRenderMode="Flat" RowHeight="18">
<telerik:RadGridView.Columns>
<telerik:GridViewDataColumn Header="A_ID" DataMemberBinding="{Binding A_Id}"/>
<telerik:GridViewDataColumn Header="DGroup" DataMemberBinding="{Binding D_Group}"/>
<telerik:GridViewDataColumn Header="UID" DataMemberBinding="{Binding U_Id}"/>
<telerik:GridViewColumn Header="Recommendation" CellTemplate="{StaticResource RecommendationItemTemplate}" />
</telerik:RadGridView.Columns>
</telerik:RadGridView>
last column Template have another RadGridView, when scroll horziontal scroll bar to right and last columns comes to view sate vertical scroll bar jumping and row height changing based on radgrid size in cell. is their a solution not to jump vertical scroll bar keep same postion when scroll horiziontal scroll bar. thanks
I know that when you select a node this event is called.
If you select another node, it is called TWICE.
Is there a way to know which it is calling it for (Unselecting or Selecting).
This way I can skip code on the unselecting one and only do code on the newly selected node.
Thanks,
Hi,
I have a RadGridView which uses a GridViewComboBoxColumn, I populate the combo box list at run time using the CellEditorInitialized event handler. My issue is that when the user selects on a new item in the combobox and then clicks on a menu item (such as FileSave) or rad ribbon button then the new combo value is discarded. I notice the CellEndEdit event is also not fired.
If I select another cell in the grid then everything works as expected (ie CellEndEdit event is fired)
Is this a known issue and is there a workaround I could use ?
Or is it possible to always close the drop down list and call EndEdit when a selection is made?
Regards
Toby