I want to replace the group panel with a gridview.(like the left part of the gantt view).
Is the any ways to customize this?
I need to save the chart in emf. I write
radChartViewAny.ExportToImage(saveFileDialog1.FileName, radChartViewAny.Size, ImageFormat.Emf);
The chart is saved to a file in emf format, but this is only a parody of emf:
1. The file size is very large. It doesn’t happen if it is a normal emf file
2. If you open this file in any program (for example, Word), then there is a "ladder" effect. Those, the file just contains a graph in the form of bitmap, but not the emf commands
I built a virtual grid which may get large so I am deferring adding a link which may take some processing to find until the row is actually selected. Is this a good idea? Can it even be done? And if so does the entire grid then have to be rebuilt?
I want to add that 10 years ago a Microsoft evangelist recommended I ask for Telerik controls - and when my next job developing web pages had only the default set it was like trying to cook with dull knives when you were used to a razor sharp set. I have them at my current job - and what a difference it makes!
Hi,
We need to merge the radGrid cell(Wage Category column) with the same name as mentioned in the video link. Code shared for your reference. Please check & help us with it.
Dim dtArraytemW as New DataTable()
Public Sub InitializeDatatable()
dtArraytemW= New DataTable
dtArraytemW.Columns.AddRange(New DataColumn() {New DataColumn("Wage Category", GetType(String)), New DataColumn("Type", GetType(String)),
New DataColumn("# Hours", GetType(String))})
End Sub
dtArraytemW.Rows.Add(0)(0) = "Salary - Office"
dtArraytemW.Rows(0)(1) = "Regular"
dtArraytemW.Rows(0)(2) = 1
dtArraytemW.Rows(0)(3) = 1.5
dtArraytemW.Rows(0)(4) = 2
dtArraytemW.Rows.Add(1)(0) = "Salary - Office"
dtArraytemW.Rows(1)(1) = "Overt0me"
dtArraytemW.Rows(1)(2) = 1
dtArraytemW.Rows(1)(3) = 4.5
dtArraytemW.Rows(1)(4) = 3
dtArraytemW.Rows.Add(2)(0) = "Salary - Office"
dtArraytemW.Rows(2)(1) = "1.7 T0me"
dtArraytemW.Rows(2)(2) = 1
dtArraytemW.Rows(2)(3) = 6.3
dtArraytemW.Rows(2)(4) = 1
rdgvWGrd.DataSource = dtArraytemW
Hello
I have been trying for weeks now to just get a working version of scheduler.
That being said ? Here is what I have done.
Still unable to get this to work.
I am new to telerik
Also I am self taught dabbler
But unable to figure out what my issue is..
My requirements for integrating scheduler in to my new born application is...........
My question is can any one give me a working scheduler
That can actually save appointments " Persisting " that can have recurrences active.
I have tried databinding directly through the schedulerdatabindingsource module .
And also tried hard coding this for info mapping .
Done everything I know to do .
Using the newest latest greatest 2017 devcraft.
Please some one help so I can move on.
Thanks Jeff
I have a table in protected part of the document. I just use it to properly format some read-only data. Style of all borders is set to None.
How can I disable any kind of interaction with the table? This includes the pop-up "select all" button above the table's top-left corner, and Design and Layout tabs in ribbon bar. They should not appear. Context menu should also be trimmed, but I think I can handle that one.
Hi.
How to save TreeView. I have no problem read data from database, like this:
Private Sub Form1_Load(sender As Object, e As EventArgs) Handles MyBase.Load
Me.TblSkydeHoldTableAdapter.Fill(Me.SkyttecenteretDataSet.tblSkydeHold)
Me.RadTreeView1.DisplayMember = "name"
Me.RadTreeView1.ParentMember = "pid"
Me.RadTreeView1.ChildMember = "id"
Me.RadTreeView1.ValueMember = "id"
Me.RadTreeView1.DataSource = Me.GetSampleData()
End Sub
Private Function GetSampleData() As DataTable
Dim dt As New DataTable()
Dim dc As New DataColumn()
dc.ColumnName = "id"
dc.DataType = GetType(Integer)
dt.Columns.Add(dc)
Dim dc1 As New DataColumn()
dc1.ColumnName = "name"
dc1.DataType = GetType(String)
dt.Columns.Add(dc1)
Dim dc2 As New DataColumn()
dc2.ColumnName = "pid"
dc2.DataType = GetType(Integer)
dt.Columns.Add(dc2)
Me.TblSkydeHoldTableAdapter.Fill(Me.SkyttecenteretDataSet.tblSkydeHold)
For Each dRow As DataRow In Me.TblSkydeHoldTableAdapter.GetData
Dim dr As DataRow = dt.NewRow()
dr(0) = dRow.Item("dr0")
dr(1) = dRow.Item("dr1")
dr(2) = dRow.Item("dr2")
dt.Rows.Add(dr)
Next
Return dt
End Function
But my problem starts when i want to save back to database. When i add a new node, the node have no parentmember value or valuemeber value. Is it possible to add those values automaticly when a new node is created?
Kindly Peter
I am creating ScatterSeries
var scatterSeria = new ScatterSeries
{
XValueMember = "COLUMN0", YValueMember = "COLUMN1",
HorizontalAxis = horizontalAxis1,
VerticalAxis = verticalAxis1,
Shape = new CircleShape(),
BackColor = Color.Red,
BorderColor = Color.Black,
PointSize = new SizeF(10.0f, 10.0f),
IsVisibleInLegend = true
};
But the border of the shape is not drawn in black on the chart. But the same shape is drawn in the legend with a black border.
In a legend, I draw a shape using
private void LegendElement_VisualItemCreating(object sender, LegendItemElementCreatingEventArgs e)
{
e.ItemElement = new LegendItemElement(e.LegendItem);
if (!(e.LegendItem.Element is ScatterSeries seria)) return;
e.ItemElement.MarkerElement.Shape = seria.Shape;
}
How to set the border color for the shape on the chart?