32 lines
744 B
C#
32 lines
744 B
C#
namespace ReportsLibrary.Reports
|
|
{
|
|
using System;
|
|
using System.ComponentModel;
|
|
using System.Drawing;
|
|
using System.Windows.Forms;
|
|
using Telerik.Reporting;
|
|
using Telerik.Reporting.Drawing;
|
|
|
|
/// <summary>
|
|
/// Summary description for Report1.
|
|
/// </summary>
|
|
public partial class ChartReport : Telerik.Reporting.Report
|
|
{
|
|
public ChartReport()
|
|
{
|
|
//
|
|
// Required for telerik Reporting designer support
|
|
//
|
|
InitializeComponent();
|
|
|
|
//
|
|
// TODO: Add any constructor code after InitializeComponent call
|
|
//
|
|
}
|
|
|
|
private void graph1_NeedDataSource(object sender, EventArgs e)
|
|
{
|
|
|
|
}
|
|
}
|
|
} |