private void radGridViewDLDDiag_CellClick(object sender, GridViewCellEventArgs e){if (e.ColumnIndex == 1 && e.RowIndex > -1)
{
try{
selecteditem = radGridViewDLDDiag.Rows[e.RowIndex].Cells[e.ColumnIndex].Value.ToString();
DLDConfigUpgradePopUpForm configUpgradePopUpForm = new DLDConfigUpgradePopUpForm(selecteditem);
configUpgradePopUpForm.ShowDialog(this);
}
catch (Exception ex)
{
}}}
My pop form (DLDConfigUpgradePopUpForm ) has cancel button
which has one line code as: this.Dispose()
but this makes my background screen flicker. PLease suggest.
Hi ,
I am using a RadTreeNode, tree Structure is given below.
Label-0
Label0-1 -- Context Menu -1 is assigned to this node
Label0-1-1 Context Menu -2 is assigned to this node
Label0-1-2 Context Menu -2 is assigned to this node
Label0-2
Label0-2-1
Label0-2-2
Label-1
I have assigned “Context Menu -1” to Label0-1 and “Context Menu -2” to Label0-1-1 as shown above .
When I do a right click on node Label0-1-1, for first time “Context Menu 1” 1 is showing , next time when I do a right click then it’s showing “Context Menu 2”. I mean sub nodes are showing the context menu of the Parent node for the first time and second time when you do a right click it shows the proper context menu.
Could any body please help me out .
Sasmita
Is it possible to change the color of text of all points on a line graph? I notice that I am able to manipulate the point size, Point color but i am not able to change the color of text to display in point. I have used RAD Chart v 3.0.1 and i am using framework 1.1 & ASP.Net.
I have tries this.
LineSeries1.AddItem(TotalMinutes, Convert.ToString(TotalMinutes) & " Min", Color.Blue)
LineSeries1.PointColor = Color.Blue
LineSeries1.PointSize = 5
LineSeries1.SetItemColor(i, Color.Blue)
But i can change the point color to blue color but not able to change the text of that point.
Also can you please tell me how can i visible Y2Axies in line graph?
Thanks