And also a question how to create header for the chart?
I'm trying to add radchartview to my form but manually(without using toolbox).
But when I run my application and when I press button to call my form with radchartview I've got messagebox with
telerik.wincontrols.radelement.backgroundshape.
What's the problem? My code in initializecomponent
I'm trying to add radchartview to my form but manually(without using toolbox).
But when I run my application and when I press button to call my form with radchartview I've got messagebox with
telerik.wincontrols.radelement.backgroundshape.
What's the problem? My code in initializecomponent
this
.radChartView1 =
new
RadChartView();
((System.ComponentModel.ISupportInitialize)(
this
.radChartView1)).BeginInit();
this
.SuspendLayout();
this
.radChartView1.Size =
new
System.Drawing.Size(592, 336);
this
.radChartView1.TabIndex = 10;
this
.radChartView1.Name =
"radChartView1"
;
this
.radChartView1.AutoScroll =
true
;
this
.radChartView1.Location =
new
System.Drawing.Point(0, 0);
this
.radChartView1.Anchor =
((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this
.ClientSize =
new
Size(592, 373);
this
.Controls.Add(
this
.radChartView1);
this
.Name =
"KLDChart"
;
this
.Text =
"KLDReport"
;
this
.Load +=
new
System.EventHandler(
this
.KLDChart_Load);
this
.Controls.SetChildIndex(
this
.radChartView1, 0);
((System.ComponentModel.ISupportInitialize)(
this
.radChartView1)).EndInit();
this
.ResumeLayout(
false
);