ChartSeriesItem
item = new ChartSeriesItem();
item.YValue = 10;
item.Label.TextBlock.Text =
"Ben 10";
item.Label.Appearance.Position.Auto =
false;
item.Label.Appearance.Position.AlignedPosition = Telerik.Reporting.Charting.Styles.
AlignedPositions.None;
item.Label.Appearance.Position.X = 10;
item.Label.Appearance.Position.Y = 10;
chartDrill.Series[0].Items.Add(item);
Any ideas?
Thanks in advance,
~Boots
Warning 2 The designer could not be shown for this file because none of the classes within it can be designed. The designer inspected the following classes in the file:
LRSummary --- The base class 'Object' could not be loaded. Ensure the assembly has been referenced and that all projects have been built. 0 0
public
partial class Report1 : Telerik.Reporting.Report
{
DataSet dataSetChart = null;
public SummaryDashboardReport()
{
InitializeComponent();
}
private void char1_NeedDataSource(object sender, EventArgs e)
{
dataSetChart = FillChartDataSet();
(sender
as Telerik.Reporting.Processing.Chart).DataSource = dataSetChart;
}
private void chart2_NeedDataSource(object sender, EventArgs e)
{
(sender
as Telerik.Reporting.Processing.Chart).DataSource = dataSetChart;
}
}