79 lines
1.5 KiB
C#
79 lines
1.5 KiB
C#
using System;
|
|
using System.Data;
|
|
using System.Configuration;
|
|
using System.Collections;
|
|
using System.Web;
|
|
using System.Web.Security;
|
|
using System.Web.UI;
|
|
using System.Web.UI.WebControls;
|
|
using System.Web.UI.WebControls.WebParts;
|
|
using System.Web.UI.HtmlControls;
|
|
using System.IO;
|
|
using SteamWare;
|
|
|
|
namespace MoonPro.WebUserControls
|
|
{
|
|
public partial class mod_grafico : System.Web.UI.UserControl
|
|
{
|
|
#region area public
|
|
|
|
public pieChart graficoTorta
|
|
{
|
|
get
|
|
{
|
|
return PieChart1;
|
|
}
|
|
set
|
|
{
|
|
PieChart1 = value;
|
|
}
|
|
}
|
|
|
|
public int height
|
|
{
|
|
get
|
|
{
|
|
return PieChart1.height;
|
|
}
|
|
set
|
|
{
|
|
PieChart1.height = value;
|
|
}
|
|
}
|
|
public int width
|
|
{
|
|
get
|
|
{
|
|
return PieChart1.width;
|
|
}
|
|
set
|
|
{
|
|
PieChart1.width = value;
|
|
}
|
|
}
|
|
public float minPercent
|
|
{
|
|
get
|
|
{
|
|
return PieChart1.minPercent;
|
|
}
|
|
set
|
|
{
|
|
PieChart1.minPercent = value;
|
|
}
|
|
}
|
|
public ChartType Tipo
|
|
{
|
|
get
|
|
{
|
|
return PieChart1.Tipo;
|
|
}
|
|
set
|
|
{
|
|
PieChart1.Tipo = value;
|
|
}
|
|
}
|
|
|
|
#endregion
|
|
}
|
|
} |