Commit b2b6637d HZH

增加金字塔图

1 个父辈 decb4fd2
// ***********************************************************************
// Assembly : HZH_Controls
// Created : 2019-09-26
//
// ***********************************************************************
// <copyright file="FunelChartAlignment.cs">
// Copyright by Huang Zhenghui(黄正辉) All, QQ group:568015492 QQ:623128629 Email:623128629@qq.com
// </copyright>
//
// Blog: https://www.cnblogs.com/bfyx
// GitHub:https://github.com/kwwwvagaa/NetWinformControl
// gitee:https://gitee.com/kwwwvagaa/net_winform_custom_control.git
//
// If you use this code, please keep this note.
// ***********************************************************************
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace HZH_Controls.Controls
{
/// <summary>
/// Enum FunelChartAlignment
/// </summary>
public enum FunelChartAlignment
{
/// <summary>
/// The left
/// </summary>
Left,
/// <summary>
/// The center
/// </summary>
Center,
/// <summary>
/// The right
/// </summary>
Right
}
}
// ***********************************************************************
// Assembly : HZH_Controls
// Created : 2019-09-26
//
// ***********************************************************************
// <copyright file="FunelChartDirection.cs">
// Copyright by Huang Zhenghui(黄正辉) All, QQ group:568015492 QQ:623128629 Email:623128629@qq.com
// </copyright>
//
// Blog: https://www.cnblogs.com/bfyx
// GitHub:https://github.com/kwwwvagaa/NetWinformControl
// gitee:https://gitee.com/kwwwvagaa/net_winform_custom_control.git
//
// If you use this code, please keep this note.
// ***********************************************************************
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace HZH_Controls.Controls
{
/// <summary>
/// Enum FunelChartDirection
/// </summary>
public enum FunelChartDirection
{
/// <summary>
/// Up
/// </summary>
UP,
/// <summary>
/// Down
/// </summary>
Down
}
}
// ***********************************************************************
// Assembly : HZH_Controls
// Created : 2019-09-26
//
// ***********************************************************************
// <copyright file="FunelChartItem.cs">
// Copyright by Huang Zhenghui(黄正辉) All, QQ group:568015492 QQ:623128629 Email:623128629@qq.com
// </copyright>
//
// Blog: https://www.cnblogs.com/bfyx
// GitHub:https://github.com/kwwwvagaa/NetWinformControl
// gitee:https://gitee.com/kwwwvagaa/net_winform_custom_control.git
//
// If you use this code, please keep this note.
// ***********************************************************************
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace HZH_Controls.Controls
{
/// <summary>
/// Class FunelChartItem.
/// </summary>
public class FunelChartItem
{
/// <summary>
/// Gets or sets the text.
/// </summary>
/// <value>The text.</value>
public string Text { get; set; }
/// <summary>
/// Gets or sets the value.
/// </summary>
/// <value>The value.</value>
public float Value { get; set; }
/// <summary>
/// Gets or sets the color of the value.
/// </summary>
/// <value>The color of the value.</value>
public System.Drawing.Color? ValueColor { get; set; }
/// <summary>
/// Gets or sets the color of the text fore.
/// </summary>
/// <value>The color of the text fore.</value>
public System.Drawing.Color? TextForeColor { get; set; }
}
}
// ***********************************************************************
// Assembly : HZH_Controls
// Created : 2019-09-26
//
// ***********************************************************************
// <copyright file="UCFunnelChart.cs">
// Copyright by Huang Zhenghui(黄正辉) All, QQ group:568015492 QQ:623128629 Email:623128629@qq.com
// </copyright>
//
// Blog: https://www.cnblogs.com/bfyx
// GitHub:https://github.com/kwwwvagaa/NetWinformControl
// gitee:https://gitee.com/kwwwvagaa/net_winform_custom_control.git
//
// If you use this code, please keep this note.
// ***********************************************************************
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Drawing;
using System.Drawing.Drawing2D;
using System.ComponentModel;
namespace HZH_Controls.Controls
{
/// <summary>
/// Class UCFunnelChart.
/// Implements the <see cref="System.Windows.Forms.UserControl" />
/// </summary>
/// <seealso cref="System.Windows.Forms.UserControl" />
public class UCFunnelChart : UserControl
{
/// <summary>
/// The title
/// </summary>
private string title;
/// <summary>
/// Gets or sets the title.
/// </summary>
/// <value>The title.</value>
[Browsable(true)]
[Category("自定义")]
[Description("获取或设置标题")]
public string Title
{
get { return title; }
set
{
title = value;
ResetTitleSize();
Invalidate();
}
}
/// <summary>
/// The title font
/// </summary>
private Font titleFont = new Font("微软雅黑", 12);
/// <summary>
/// Gets or sets the title font.
/// </summary>
/// <value>The title font.</value>
[Browsable(true)]
[Category("自定义")]
[Description("获取或设置标题字体")]
public Font TitleFont
{
get { return titleFont; }
set
{
titleFont = value;
ResetTitleSize();
Invalidate();
}
}
/// <summary>
/// The title fore color
/// </summary>
private Color titleForeColor = Color.Black;
/// <summary>
/// Gets or sets the color of the title fore.
/// </summary>
/// <value>The color of the title fore.</value>
[Browsable(true)]
[Category("自定义")]
[Description("获取或设置标题文字颜色")]
public Color TitleForeColor
{
get { return titleForeColor; }
set
{
titleForeColor = value;
Invalidate();
}
}
/// <summary>
/// The items
/// </summary>
private FunelChartItem[] items;
/// <summary>
/// Gets or sets the items.
/// </summary>
/// <value>The items.</value>
[Browsable(true)]
[Category("自定义")]
[Description("获取或设置项目")]
public FunelChartItem[] Items
{
get { return items; }
set
{
items = value;
Invalidate();
}
}
/// <summary>
/// The direction
/// </summary>
private FunelChartDirection direction = FunelChartDirection.UP;
/// <summary>
/// Gets or sets the direction.
/// </summary>
/// <value>The direction.</value>
[Browsable(true)]
[Category("自定义")]
[Description("获取或设置方向")]
public FunelChartDirection Direction
{
get { return direction; }
set
{
direction = value;
Invalidate();
}
}
/// <summary>
/// The alignment
/// </summary>
private FunelChartAlignment alignment = FunelChartAlignment.Center;
/// <summary>
/// Gets or sets the alignment.
/// </summary>
/// <value>The alignment.</value>
[Browsable(true)]
[Category("自定义")]
[Description("获取或设置对齐方式")]
public FunelChartAlignment Alignment
{
get { return alignment; }
set
{
alignment = value;
Invalidate();
}
}
/// <summary>
/// The item text align
/// </summary>
private FunelChartAlignment itemTextAlign = FunelChartAlignment.Center;
/// <summary>
/// Gets or sets the item text align.
/// </summary>
/// <value>The item text align.</value>
[Browsable(true)]
[Category("自定义")]
[Description("获取或设置文字位置")]
public FunelChartAlignment ItemTextAlign
{
get { return itemTextAlign; }
set
{
itemTextAlign = value;
ResetWorkingRect();
Invalidate();
}
}
/// <summary>
/// The show value
/// </summary>
private bool showValue = false;
/// <summary>
/// Gets or sets a value indicating whether [show value].
/// </summary>
/// <value><c>true</c> if [show value]; otherwise, <c>false</c>.</value>
[Browsable(true)]
[Category("自定义")]
[Description("获取或设置是否显示值")]
public bool ShowValue
{
get { return showValue; }
set
{
showValue = value;
Invalidate();
}
}
/// <summary>
/// The value format
/// </summary>
private string valueFormat = "0.##";
/// <summary>
/// Gets or sets the value format.
/// </summary>
/// <value>The value format.</value>
[Browsable(true)]
[Category("自定义")]
[Description("获取或设置值格式化")]
public string ValueFormat
{
get { return valueFormat; }
set
{
valueFormat = value;
Invalidate();
}
}
/// <summary>
/// The m rect working
/// </summary>
RectangleF m_rectWorking;
/// <summary>
/// The m title size
/// </summary>
SizeF m_titleSize = SizeF.Empty;
/// <summary>
/// The int split width
/// </summary>
int intSplitWidth = 1;
/// <summary>
/// Initializes a new instance of the <see cref="UCFunnelChart"/> class.
/// </summary>
public UCFunnelChart()
{
this.SetStyle(ControlStyles.AllPaintingInWmPaint, true);
this.SetStyle(ControlStyles.DoubleBuffer, true);
this.SetStyle(ControlStyles.ResizeRedraw, true);
this.SetStyle(ControlStyles.Selectable, true);
this.SetStyle(ControlStyles.SupportsTransparentBackColor, true);
this.SetStyle(ControlStyles.UserPaint, true);
this.FontChanged += UCFunnelChart_FontChanged;
Font = new Font("微软雅黑", 8);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
this.SizeChanged += UCFunnelChart_SizeChanged;
Size = new System.Drawing.Size(150, 150);
items = new FunelChartItem[0];
if (ControlHelper.IsDesignMode())
{
items = new FunelChartItem[5];
for (int i = 0; i < 5; i++)
{
items[i] = new FunelChartItem()
{
Text = "item" + i,
Value = 10 * (i + 1)
};
}
}
}
/// <summary>
/// Handles the FontChanged event of the UCFunnelChart control.
/// </summary>
/// <param name="sender">The source of the event.</param>
/// <param name="e">The <see cref="EventArgs"/> instance containing the event data.</param>
void UCFunnelChart_FontChanged(object sender, EventArgs e)
{
ResetWorkingRect();
}
/// <summary>
/// Handles the SizeChanged event of the UCFunnelChart control.
/// </summary>
/// <param name="sender">The source of the event.</param>
/// <param name="e">The <see cref="EventArgs"/> instance containing the event data.</param>
void UCFunnelChart_SizeChanged(object sender, EventArgs e)
{
ResetWorkingRect();
}
/// <summary>
/// Resets the working rect.
/// </summary>
private void ResetWorkingRect()
{
if (itemTextAlign == FunelChartAlignment.Center)
{
m_rectWorking = new RectangleF(0, m_titleSize.Height == 0 ? 0 : (m_titleSize.Height + 10), this.Width, this.Height - (m_titleSize.Height == 0 ? 0 : (m_titleSize.Height + 10)));
}
else if (itemTextAlign == FunelChartAlignment.Left)
{
float fltMax = 0;
if (items != null && items.Length > 0)
{
using (Graphics g = this.CreateGraphics())
{
fltMax = items.Max(p => g.MeasureString(p.Text, Font).Width);
}
}
m_rectWorking = new RectangleF(fltMax, m_titleSize.Height == 0 ? 0 : (m_titleSize.Height + 10), this.Width - fltMax, this.Height - (m_titleSize.Height == 0 ? 0 : (m_titleSize.Height + 10)));
}
else
{
float fltMax = 0;
if (items != null && items.Length > 0)
{
using (Graphics g = this.CreateGraphics())
{
fltMax = items.Max(p => g.MeasureString(p.Text, Font).Width);
}
}
m_rectWorking = new RectangleF(0, m_titleSize.Height == 0 ? 0 : (m_titleSize.Height + 10), this.Width - fltMax, this.Height - (m_titleSize.Height == 0 ? 0 : (m_titleSize.Height + 10)));
}
}
/// <summary>
/// Resets the size of the title.
/// </summary>
private void ResetTitleSize()
{
if (string.IsNullOrEmpty(title))
{
m_titleSize = SizeF.Empty;
}
else
{
using (Graphics g = this.CreateGraphics())
{
m_titleSize = g.MeasureString(title, titleFont);
m_titleSize.Height += 20;
}
}
ResetWorkingRect();
}
/// <summary>
/// 引发 <see cref="E:System.Windows.Forms.Control.Paint" /> 事件。
/// </summary>
/// <param name="e">包含事件数据的 <see cref="T:System.Windows.Forms.PaintEventArgs" />。</param>
protected override void OnPaint(PaintEventArgs e)
{
base.OnPaint(e);
var g = e.Graphics;
g.SetGDIHigh();
if (!string.IsNullOrEmpty(title))
{
g.DrawString(title, titleFont, new SolidBrush(titleForeColor), new RectangleF(0, 0, this.Width, m_titleSize.Height), new StringFormat() { Alignment = StringAlignment.Center, LineAlignment = StringAlignment.Center });
}
if (items == null || items.Length <= 0)
{
g.DrawString("没有数据", Font, new SolidBrush(Color.Black), this.m_rectWorking, new StringFormat() { Alignment = StringAlignment.Center, LineAlignment = StringAlignment.Center });
return;
}
List<FunelChartItem> lstItems;
if (direction == FunelChartDirection.UP)
{
lstItems = items.OrderBy(p => p.Value).ToList();
}
else
{
lstItems = items.OrderByDescending(p => p.Value).ToList();
}
List<RectangleF> lstRects = new List<RectangleF>();
List<GraphicsPath> lstPaths = new List<GraphicsPath>();
float maxValue = lstItems.Max(p => p.Value);
float dblSplitHeight = m_rectWorking.Height / lstItems.Count;
for (int i = 0; i < lstItems.Count; i++)
{
FunelChartItem item = lstItems[i];
if (item.ValueColor == null || item.ValueColor == Color.Empty || item.ValueColor == Color.Transparent)
item.ValueColor = ControlHelper.Colors[i];
switch (alignment)
{
case FunelChartAlignment.Left:
lstRects.Add(new RectangleF(m_rectWorking.Left, m_rectWorking.Top + dblSplitHeight * i, item.Value / maxValue * m_rectWorking.Width, dblSplitHeight));
break;
case FunelChartAlignment.Center:
lstRects.Add(new RectangleF(m_rectWorking.Left + (m_rectWorking.Width - (item.Value / maxValue * m_rectWorking.Width)) / 2, m_rectWorking.Top + dblSplitHeight * i, item.Value / maxValue * m_rectWorking.Width, dblSplitHeight));
break;
case FunelChartAlignment.Right:
lstRects.Add(new RectangleF(m_rectWorking.Right - (item.Value / maxValue * m_rectWorking.Width), m_rectWorking.Top + dblSplitHeight * i, item.Value / maxValue * m_rectWorking.Width, dblSplitHeight));
break;
}
}
for (int i = 0; i < lstRects.Count; i++)
{
var rect = lstRects[i];
GraphicsPath path = new GraphicsPath();
List<PointF> lstPoints = new List<PointF>();
if (direction == FunelChartDirection.UP)
{
switch (alignment)
{
case FunelChartAlignment.Left:
lstPoints.Add(new PointF(rect.Left, rect.Top));
if (i != 0)
{
lstPoints.Add(new PointF(lstRects[i - 1].Right, rect.Top));
}
break;
case FunelChartAlignment.Center:
if (i == 0)
{
lstPoints.Add(new PointF(rect.Left + rect.Width / 2, rect.Top));
}
else
{
lstPoints.Add(new PointF(lstRects[i - 1].Left, rect.Top));
lstPoints.Add(new PointF(lstRects[i - 1].Right, rect.Top));
}
break;
case FunelChartAlignment.Right:
if (i == 0)
{
lstPoints.Add(new PointF(rect.Right, rect.Top));
}
else
{
lstPoints.Add(new PointF(rect.Right - lstRects[i - 1].Width, rect.Top));
lstPoints.Add(new PointF(rect.Right, rect.Top));
}
break;
}
lstPoints.Add(new PointF(rect.Right, rect.Bottom - intSplitWidth));
lstPoints.Add(new PointF(rect.Left, rect.Bottom - intSplitWidth));
}
else
{
lstPoints.Add(new PointF(rect.Left, rect.Top + intSplitWidth));
lstPoints.Add(new PointF(rect.Right, rect.Top + intSplitWidth));
switch (alignment)
{
case FunelChartAlignment.Left:
if (i == lstRects.Count - 1)
{
lstPoints.Add(new PointF(rect.Left, rect.Bottom));
}
else
{
lstPoints.Add(new PointF(lstRects[i + 1].Right, rect.Bottom));
lstPoints.Add(new PointF(rect.Left, rect.Bottom));
}
break;
case FunelChartAlignment.Center:
if (i == lstRects.Count - 1)
{
lstPoints.Add(new PointF(rect.Left + rect.Width / 2, rect.Bottom));
}
else
{
lstPoints.Add(new PointF(lstRects[i + 1].Right, rect.Bottom));
lstPoints.Add(new PointF(lstRects[i + 1].Left, rect.Bottom));
}
break;
case FunelChartAlignment.Right:
if (i == lstRects.Count - 1)
{
lstPoints.Add(new PointF(rect.Right, rect.Bottom));
}
else
{
lstPoints.Add(new PointF(rect.Right, rect.Bottom));
lstPoints.Add(new PointF(lstRects[i + 1].Left, rect.Bottom));
}
break;
}
}
path.AddLines(lstPoints.ToArray());
path.CloseAllFigures();
// g.DrawPath(new Pen(new SolidBrush(lstItems[i].ValueColor.Value)), path);
g.FillPath(new SolidBrush(lstItems[i].ValueColor.Value), path);
//写字
if (itemTextAlign == FunelChartAlignment.Center)
{
g.DrawString(lstItems[i].Text + (ShowValue ? lstItems[i].Value.ToString("\n" + valueFormat) : ""), Font, new SolidBrush((lstItems[i].TextForeColor == null || lstItems[i].TextForeColor == Color.Empty || lstItems[i].TextForeColor == Color.Transparent) ? Color.White : lstItems[i].TextForeColor.Value), rect, new StringFormat() { Alignment = StringAlignment.Center, LineAlignment = StringAlignment.Center });
}
else if (itemTextAlign == FunelChartAlignment.Left)
{
g.DrawString(lstItems[i].Text + (ShowValue ? lstItems[i].Value.ToString("\n" + valueFormat) : ""), Font, new SolidBrush((lstItems[i].TextForeColor == null || lstItems[i].TextForeColor == Color.Empty || lstItems[i].TextForeColor == Color.Transparent) ? lstItems[i].ValueColor.Value : lstItems[i].TextForeColor.Value), new RectangleF(0, rect.Top, rect.Left, rect.Height), new StringFormat() { Alignment = StringAlignment.Far, LineAlignment = StringAlignment.Center });
g.DrawLine(new Pen(new SolidBrush((lstItems[i].TextForeColor == null || lstItems[i].TextForeColor == Color.Empty || lstItems[i].TextForeColor == Color.Transparent) ? lstItems[i].ValueColor.Value : lstItems[i].TextForeColor.Value)), rect.Left, rect.Top + rect.Height / 2, rect.Left + rect.Width / 2, rect.Top + rect.Height / 2);
}
else
{
g.DrawString(lstItems[i].Text + (ShowValue ? lstItems[i].Value.ToString("\n" + valueFormat) : ""), Font, new SolidBrush((lstItems[i].TextForeColor == null || lstItems[i].TextForeColor == Color.Empty || lstItems[i].TextForeColor == Color.Transparent) ? lstItems[i].ValueColor.Value : lstItems[i].TextForeColor.Value), new RectangleF(rect.Right, rect.Top, this.Width - rect.Right, rect.Height), new StringFormat() { Alignment = StringAlignment.Near, LineAlignment = StringAlignment.Center });
g.DrawLine(new Pen(new SolidBrush((lstItems[i].TextForeColor == null || lstItems[i].TextForeColor == Color.Empty || lstItems[i].TextForeColor == Color.Transparent) ? lstItems[i].ValueColor.Value : lstItems[i].TextForeColor.Value)), rect.Left + rect.Width / 2, rect.Top + rect.Height / 2, rect.Right, rect.Top + rect.Height / 2);
}
}
}
}
}
......@@ -53,6 +53,12 @@
<SubType>UserControl</SubType>
</Compile>
<Compile Include="Controls\Charts\CurveChart\CurveItem.cs" />
<Compile Include="Controls\Charts\FunnelChart\FunelChartAlignment.cs" />
<Compile Include="Controls\Charts\FunnelChart\FunelChartDirection.cs" />
<Compile Include="Controls\Charts\FunnelChart\FunelChartItem.cs" />
<Compile Include="Controls\Charts\FunnelChart\UCFunnelChart.cs">
<SubType>UserControl</SubType>
</Compile>
<Compile Include="Controls\Charts\MarkText.cs" />
<Compile Include="Controls\Charts\MarkTextPositionStyle.cs" />
<Compile Include="Controls\Charts\PieChart\UCPieChart.cs">
......
......@@ -68,6 +68,7 @@ namespace Test
tnCharts.Nodes.Add("饼状图");
tnCharts.Nodes.Add("曲线图");
tnCharts.Nodes.Add("雷达图");
tnCharts.Nodes.Add("金字塔图");
this.tvMenu.Nodes.Add(tnCharts);
TreeNode tnFactory = new TreeNode(" 工业控件");
......@@ -206,10 +207,10 @@ namespace Test
AddControl(new UC.UCTestPage());
break;
case "表格":
AddControl(new UC.UCTestGridTable() { Dock = DockStyle.Fill });
AddControl(new UC.UCTestGridTable());
break;
case "树表格":
AddControl(new UC.UCTestTreeGridTable() { Dock = DockStyle.Fill });
AddControl(new UC.UCTestTreeGridTable());
break;
case "进度条":
AddControl(new UC.UCTestProcess() { Dock = DockStyle.Fill });
......@@ -263,6 +264,9 @@ namespace Test
case "雷达图":
AddControl(new UC.UCTestRadarChart() { Dock = DockStyle.Fill });
break;
case "金字塔图":
AddControl(new UC.UCTestFunnelChart());
break;
#endregion
#region 工业 English:Industry
......
......@@ -122,6 +122,12 @@
<Compile Include="UC\UCTestCurveChart.Designer.cs">
<DependentUpon>UCTestCurveChart.cs</DependentUpon>
</Compile>
<Compile Include="UC\UCTestFunnelChart.cs">
<SubType>UserControl</SubType>
</Compile>
<Compile Include="UC\UCTestFunnelChart.Designer.cs">
<DependentUpon>UCTestFunnelChart.cs</DependentUpon>
</Compile>
<Compile Include="UC\UCTestIcon.cs">
<SubType>UserControl</SubType>
</Compile>
......@@ -353,6 +359,9 @@
<EmbeddedResource Include="UC\UCTestForms.resx">
<DependentUpon>UCTestForms.cs</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Include="UC\UCTestFunnelChart.resx">
<DependentUpon>UCTestFunnelChart.cs</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Include="UC\UCTestGridTable.resx">
<DependentUpon>UCTestGridTable.cs</DependentUpon>
</EmbeddedResource>
......
namespace Test.UC
{
partial class UCTestFunnelChart
{
/// <summary>
/// 必需的设计器变量。
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// 清理所有正在使用的资源。
/// </summary>
/// <param name="disposing">如果应释放托管资源,为 true;否则为 false。</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region 组件设计器生成的代码
/// <summary>
/// 设计器支持所需的方法 - 不要
/// 使用代码编辑器修改此方法的内容。
/// </summary>
private void InitializeComponent()
{
HZH_Controls.Controls.FunelChartItem funelChartItem81 = new HZH_Controls.Controls.FunelChartItem();
HZH_Controls.Controls.FunelChartItem funelChartItem82 = new HZH_Controls.Controls.FunelChartItem();
HZH_Controls.Controls.FunelChartItem funelChartItem83 = new HZH_Controls.Controls.FunelChartItem();
HZH_Controls.Controls.FunelChartItem funelChartItem84 = new HZH_Controls.Controls.FunelChartItem();
HZH_Controls.Controls.FunelChartItem funelChartItem85 = new HZH_Controls.Controls.FunelChartItem();
HZH_Controls.Controls.FunelChartItem funelChartItem86 = new HZH_Controls.Controls.FunelChartItem();
HZH_Controls.Controls.FunelChartItem funelChartItem87 = new HZH_Controls.Controls.FunelChartItem();
HZH_Controls.Controls.FunelChartItem funelChartItem88 = new HZH_Controls.Controls.FunelChartItem();
HZH_Controls.Controls.FunelChartItem funelChartItem89 = new HZH_Controls.Controls.FunelChartItem();
HZH_Controls.Controls.FunelChartItem funelChartItem90 = new HZH_Controls.Controls.FunelChartItem();
HZH_Controls.Controls.FunelChartItem funelChartItem91 = new HZH_Controls.Controls.FunelChartItem();
HZH_Controls.Controls.FunelChartItem funelChartItem92 = new HZH_Controls.Controls.FunelChartItem();
HZH_Controls.Controls.FunelChartItem funelChartItem93 = new HZH_Controls.Controls.FunelChartItem();
HZH_Controls.Controls.FunelChartItem funelChartItem94 = new HZH_Controls.Controls.FunelChartItem();
HZH_Controls.Controls.FunelChartItem funelChartItem95 = new HZH_Controls.Controls.FunelChartItem();
HZH_Controls.Controls.FunelChartItem funelChartItem96 = new HZH_Controls.Controls.FunelChartItem();
HZH_Controls.Controls.FunelChartItem funelChartItem97 = new HZH_Controls.Controls.FunelChartItem();
HZH_Controls.Controls.FunelChartItem funelChartItem98 = new HZH_Controls.Controls.FunelChartItem();
HZH_Controls.Controls.FunelChartItem funelChartItem99 = new HZH_Controls.Controls.FunelChartItem();
HZH_Controls.Controls.FunelChartItem funelChartItem100 = new HZH_Controls.Controls.FunelChartItem();
HZH_Controls.Controls.FunelChartItem funelChartItem101 = new HZH_Controls.Controls.FunelChartItem();
HZH_Controls.Controls.FunelChartItem funelChartItem102 = new HZH_Controls.Controls.FunelChartItem();
HZH_Controls.Controls.FunelChartItem funelChartItem103 = new HZH_Controls.Controls.FunelChartItem();
HZH_Controls.Controls.FunelChartItem funelChartItem104 = new HZH_Controls.Controls.FunelChartItem();
HZH_Controls.Controls.FunelChartItem funelChartItem105 = new HZH_Controls.Controls.FunelChartItem();
HZH_Controls.Controls.FunelChartItem funelChartItem106 = new HZH_Controls.Controls.FunelChartItem();
HZH_Controls.Controls.FunelChartItem funelChartItem107 = new HZH_Controls.Controls.FunelChartItem();
HZH_Controls.Controls.FunelChartItem funelChartItem108 = new HZH_Controls.Controls.FunelChartItem();
HZH_Controls.Controls.FunelChartItem funelChartItem109 = new HZH_Controls.Controls.FunelChartItem();
HZH_Controls.Controls.FunelChartItem funelChartItem110 = new HZH_Controls.Controls.FunelChartItem();
HZH_Controls.Controls.FunelChartItem funelChartItem111 = new HZH_Controls.Controls.FunelChartItem();
HZH_Controls.Controls.FunelChartItem funelChartItem112 = new HZH_Controls.Controls.FunelChartItem();
HZH_Controls.Controls.FunelChartItem funelChartItem113 = new HZH_Controls.Controls.FunelChartItem();
HZH_Controls.Controls.FunelChartItem funelChartItem114 = new HZH_Controls.Controls.FunelChartItem();
HZH_Controls.Controls.FunelChartItem funelChartItem115 = new HZH_Controls.Controls.FunelChartItem();
HZH_Controls.Controls.FunelChartItem funelChartItem116 = new HZH_Controls.Controls.FunelChartItem();
HZH_Controls.Controls.FunelChartItem funelChartItem117 = new HZH_Controls.Controls.FunelChartItem();
HZH_Controls.Controls.FunelChartItem funelChartItem118 = new HZH_Controls.Controls.FunelChartItem();
HZH_Controls.Controls.FunelChartItem funelChartItem119 = new HZH_Controls.Controls.FunelChartItem();
HZH_Controls.Controls.FunelChartItem funelChartItem120 = new HZH_Controls.Controls.FunelChartItem();
HZH_Controls.Controls.FunelChartItem funelChartItem121 = new HZH_Controls.Controls.FunelChartItem();
HZH_Controls.Controls.FunelChartItem funelChartItem122 = new HZH_Controls.Controls.FunelChartItem();
HZH_Controls.Controls.FunelChartItem funelChartItem123 = new HZH_Controls.Controls.FunelChartItem();
HZH_Controls.Controls.FunelChartItem funelChartItem124 = new HZH_Controls.Controls.FunelChartItem();
HZH_Controls.Controls.FunelChartItem funelChartItem125 = new HZH_Controls.Controls.FunelChartItem();
HZH_Controls.Controls.FunelChartItem funelChartItem126 = new HZH_Controls.Controls.FunelChartItem();
HZH_Controls.Controls.FunelChartItem funelChartItem127 = new HZH_Controls.Controls.FunelChartItem();
HZH_Controls.Controls.FunelChartItem funelChartItem128 = new HZH_Controls.Controls.FunelChartItem();
HZH_Controls.Controls.FunelChartItem funelChartItem129 = new HZH_Controls.Controls.FunelChartItem();
HZH_Controls.Controls.FunelChartItem funelChartItem130 = new HZH_Controls.Controls.FunelChartItem();
HZH_Controls.Controls.FunelChartItem funelChartItem131 = new HZH_Controls.Controls.FunelChartItem();
HZH_Controls.Controls.FunelChartItem funelChartItem132 = new HZH_Controls.Controls.FunelChartItem();
HZH_Controls.Controls.FunelChartItem funelChartItem133 = new HZH_Controls.Controls.FunelChartItem();
HZH_Controls.Controls.FunelChartItem funelChartItem134 = new HZH_Controls.Controls.FunelChartItem();
HZH_Controls.Controls.FunelChartItem funelChartItem135 = new HZH_Controls.Controls.FunelChartItem();
HZH_Controls.Controls.FunelChartItem funelChartItem136 = new HZH_Controls.Controls.FunelChartItem();
HZH_Controls.Controls.FunelChartItem funelChartItem137 = new HZH_Controls.Controls.FunelChartItem();
HZH_Controls.Controls.FunelChartItem funelChartItem138 = new HZH_Controls.Controls.FunelChartItem();
HZH_Controls.Controls.FunelChartItem funelChartItem139 = new HZH_Controls.Controls.FunelChartItem();
HZH_Controls.Controls.FunelChartItem funelChartItem140 = new HZH_Controls.Controls.FunelChartItem();
HZH_Controls.Controls.FunelChartItem funelChartItem141 = new HZH_Controls.Controls.FunelChartItem();
HZH_Controls.Controls.FunelChartItem funelChartItem142 = new HZH_Controls.Controls.FunelChartItem();
HZH_Controls.Controls.FunelChartItem funelChartItem143 = new HZH_Controls.Controls.FunelChartItem();
HZH_Controls.Controls.FunelChartItem funelChartItem144 = new HZH_Controls.Controls.FunelChartItem();
HZH_Controls.Controls.FunelChartItem funelChartItem145 = new HZH_Controls.Controls.FunelChartItem();
HZH_Controls.Controls.FunelChartItem funelChartItem146 = new HZH_Controls.Controls.FunelChartItem();
HZH_Controls.Controls.FunelChartItem funelChartItem147 = new HZH_Controls.Controls.FunelChartItem();
HZH_Controls.Controls.FunelChartItem funelChartItem148 = new HZH_Controls.Controls.FunelChartItem();
HZH_Controls.Controls.FunelChartItem funelChartItem149 = new HZH_Controls.Controls.FunelChartItem();
HZH_Controls.Controls.FunelChartItem funelChartItem150 = new HZH_Controls.Controls.FunelChartItem();
HZH_Controls.Controls.FunelChartItem funelChartItem151 = new HZH_Controls.Controls.FunelChartItem();
HZH_Controls.Controls.FunelChartItem funelChartItem152 = new HZH_Controls.Controls.FunelChartItem();
HZH_Controls.Controls.FunelChartItem funelChartItem153 = new HZH_Controls.Controls.FunelChartItem();
HZH_Controls.Controls.FunelChartItem funelChartItem154 = new HZH_Controls.Controls.FunelChartItem();
HZH_Controls.Controls.FunelChartItem funelChartItem155 = new HZH_Controls.Controls.FunelChartItem();
HZH_Controls.Controls.FunelChartItem funelChartItem156 = new HZH_Controls.Controls.FunelChartItem();
HZH_Controls.Controls.FunelChartItem funelChartItem157 = new HZH_Controls.Controls.FunelChartItem();
HZH_Controls.Controls.FunelChartItem funelChartItem158 = new HZH_Controls.Controls.FunelChartItem();
HZH_Controls.Controls.FunelChartItem funelChartItem159 = new HZH_Controls.Controls.FunelChartItem();
HZH_Controls.Controls.FunelChartItem funelChartItem160 = new HZH_Controls.Controls.FunelChartItem();
this.ucFunnelChart2 = new HZH_Controls.Controls.UCFunnelChart();
this.ucFunnelChart1 = new HZH_Controls.Controls.UCFunnelChart();
this.ucFunnelChart3 = new HZH_Controls.Controls.UCFunnelChart();
this.ucFunnelChart4 = new HZH_Controls.Controls.UCFunnelChart();
this.ucFunnelChart5 = new HZH_Controls.Controls.UCFunnelChart();
this.ucFunnelChart6 = new HZH_Controls.Controls.UCFunnelChart();
this.ucFunnelChart7 = new HZH_Controls.Controls.UCFunnelChart();
this.ucFunnelChart8 = new HZH_Controls.Controls.UCFunnelChart();
this.ucFunnelChart9 = new HZH_Controls.Controls.UCFunnelChart();
this.ucFunnelChart10 = new HZH_Controls.Controls.UCFunnelChart();
this.ucFunnelChart11 = new HZH_Controls.Controls.UCFunnelChart();
this.ucFunnelChart12 = new HZH_Controls.Controls.UCFunnelChart();
this.ucFunnelChart13 = new HZH_Controls.Controls.UCFunnelChart();
this.ucFunnelChart14 = new HZH_Controls.Controls.UCFunnelChart();
this.ucFunnelChart15 = new HZH_Controls.Controls.UCFunnelChart();
this.ucFunnelChart16 = new HZH_Controls.Controls.UCFunnelChart();
this.SuspendLayout();
//
// ucFunnelChart2
//
this.ucFunnelChart2.Alignment = HZH_Controls.Controls.FunelChartAlignment.Center;
this.ucFunnelChart2.Direction = HZH_Controls.Controls.FunelChartDirection.Down;
this.ucFunnelChart2.Font = new System.Drawing.Font("微软雅黑", 8F);
this.ucFunnelChart2.ForeColor = System.Drawing.Color.Black;
funelChartItem81.Text = "item0";
funelChartItem81.TextForeColor = null;
funelChartItem81.Value = 10F;
funelChartItem81.ValueColor = System.Drawing.Color.FromArgb(((int)(((byte)(55)))), ((int)(((byte)(162)))), ((int)(((byte)(218)))));
funelChartItem82.Text = "item1";
funelChartItem82.TextForeColor = null;
funelChartItem82.Value = 20F;
funelChartItem82.ValueColor = System.Drawing.Color.FromArgb(((int)(((byte)(50)))), ((int)(((byte)(197)))), ((int)(((byte)(233)))));
funelChartItem83.Text = "item2";
funelChartItem83.TextForeColor = null;
funelChartItem83.Value = 30F;
funelChartItem83.ValueColor = System.Drawing.Color.FromArgb(((int)(((byte)(103)))), ((int)(((byte)(224)))), ((int)(((byte)(227)))));
funelChartItem84.Text = "item3";
funelChartItem84.TextForeColor = null;
funelChartItem84.Value = 40F;
funelChartItem84.ValueColor = System.Drawing.Color.FromArgb(((int)(((byte)(159)))), ((int)(((byte)(230)))), ((int)(((byte)(184)))));
funelChartItem85.Text = "item4";
funelChartItem85.TextForeColor = null;
funelChartItem85.Value = 50F;
funelChartItem85.ValueColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(219)))), ((int)(((byte)(92)))));
this.ucFunnelChart2.Items = new HZH_Controls.Controls.FunelChartItem[] {
funelChartItem81,
funelChartItem82,
funelChartItem83,
funelChartItem84,
funelChartItem85};
this.ucFunnelChart2.ItemTextAlign = HZH_Controls.Controls.FunelChartAlignment.Right;
this.ucFunnelChart2.Location = new System.Drawing.Point(15, 269);
this.ucFunnelChart2.Name = "ucFunnelChart2";
this.ucFunnelChart2.ShowValue = false;
this.ucFunnelChart2.Size = new System.Drawing.Size(242, 244);
this.ucFunnelChart2.TabIndex = 0;
this.ucFunnelChart2.Title = null;
this.ucFunnelChart2.TitleFont = new System.Drawing.Font("微软雅黑", 12F);
this.ucFunnelChart2.TitleForeColor = System.Drawing.Color.Black;
this.ucFunnelChart2.ValueFormat = "0.##";
//
// ucFunnelChart1
//
this.ucFunnelChart1.Alignment = HZH_Controls.Controls.FunelChartAlignment.Center;
this.ucFunnelChart1.Direction = HZH_Controls.Controls.FunelChartDirection.UP;
this.ucFunnelChart1.Font = new System.Drawing.Font("微软雅黑", 8F);
this.ucFunnelChart1.ForeColor = System.Drawing.Color.Black;
funelChartItem86.Text = "item0";
funelChartItem86.TextForeColor = null;
funelChartItem86.Value = 10F;
funelChartItem86.ValueColor = System.Drawing.Color.FromArgb(((int)(((byte)(55)))), ((int)(((byte)(162)))), ((int)(((byte)(218)))));
funelChartItem87.Text = "item1";
funelChartItem87.TextForeColor = null;
funelChartItem87.Value = 20F;
funelChartItem87.ValueColor = System.Drawing.Color.FromArgb(((int)(((byte)(50)))), ((int)(((byte)(197)))), ((int)(((byte)(233)))));
funelChartItem88.Text = "item2";
funelChartItem88.TextForeColor = null;
funelChartItem88.Value = 30F;
funelChartItem88.ValueColor = System.Drawing.Color.FromArgb(((int)(((byte)(103)))), ((int)(((byte)(224)))), ((int)(((byte)(227)))));
funelChartItem89.Text = "item3";
funelChartItem89.TextForeColor = null;
funelChartItem89.Value = 40F;
funelChartItem89.ValueColor = System.Drawing.Color.FromArgb(((int)(((byte)(159)))), ((int)(((byte)(230)))), ((int)(((byte)(184)))));
funelChartItem90.Text = "item4";
funelChartItem90.TextForeColor = null;
funelChartItem90.Value = 50F;
funelChartItem90.ValueColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(219)))), ((int)(((byte)(92)))));
this.ucFunnelChart1.Items = new HZH_Controls.Controls.FunelChartItem[] {
funelChartItem86,
funelChartItem87,
funelChartItem88,
funelChartItem89,
funelChartItem90};
this.ucFunnelChart1.ItemTextAlign = HZH_Controls.Controls.FunelChartAlignment.Right;
this.ucFunnelChart1.Location = new System.Drawing.Point(15, 19);
this.ucFunnelChart1.Name = "ucFunnelChart1";
this.ucFunnelChart1.ShowValue = false;
this.ucFunnelChart1.Size = new System.Drawing.Size(242, 244);
this.ucFunnelChart1.TabIndex = 0;
this.ucFunnelChart1.Title = null;
this.ucFunnelChart1.TitleFont = new System.Drawing.Font("微软雅黑", 12F);
this.ucFunnelChart1.TitleForeColor = System.Drawing.Color.Black;
this.ucFunnelChart1.ValueFormat = "0.##";
//
// ucFunnelChart3
//
this.ucFunnelChart3.Alignment = HZH_Controls.Controls.FunelChartAlignment.Left;
this.ucFunnelChart3.Direction = HZH_Controls.Controls.FunelChartDirection.UP;
this.ucFunnelChart3.Font = new System.Drawing.Font("微软雅黑", 8F);
this.ucFunnelChart3.ForeColor = System.Drawing.Color.Black;
funelChartItem91.Text = "item0";
funelChartItem91.TextForeColor = null;
funelChartItem91.Value = 10F;
funelChartItem91.ValueColor = System.Drawing.Color.FromArgb(((int)(((byte)(55)))), ((int)(((byte)(162)))), ((int)(((byte)(218)))));
funelChartItem92.Text = "item1";
funelChartItem92.TextForeColor = null;
funelChartItem92.Value = 20F;
funelChartItem92.ValueColor = System.Drawing.Color.FromArgb(((int)(((byte)(50)))), ((int)(((byte)(197)))), ((int)(((byte)(233)))));
funelChartItem93.Text = "item2";
funelChartItem93.TextForeColor = null;
funelChartItem93.Value = 30F;
funelChartItem93.ValueColor = System.Drawing.Color.FromArgb(((int)(((byte)(103)))), ((int)(((byte)(224)))), ((int)(((byte)(227)))));
funelChartItem94.Text = "item3";
funelChartItem94.TextForeColor = null;
funelChartItem94.Value = 40F;
funelChartItem94.ValueColor = System.Drawing.Color.FromArgb(((int)(((byte)(159)))), ((int)(((byte)(230)))), ((int)(((byte)(184)))));
funelChartItem95.Text = "item4";
funelChartItem95.TextForeColor = null;
funelChartItem95.Value = 50F;
funelChartItem95.ValueColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(219)))), ((int)(((byte)(92)))));
this.ucFunnelChart3.Items = new HZH_Controls.Controls.FunelChartItem[] {
funelChartItem91,
funelChartItem92,
funelChartItem93,
funelChartItem94,
funelChartItem95};
this.ucFunnelChart3.ItemTextAlign = HZH_Controls.Controls.FunelChartAlignment.Right;
this.ucFunnelChart3.Location = new System.Drawing.Point(263, 19);
this.ucFunnelChart3.Name = "ucFunnelChart3";
this.ucFunnelChart3.ShowValue = false;
this.ucFunnelChart3.Size = new System.Drawing.Size(242, 244);
this.ucFunnelChart3.TabIndex = 0;
this.ucFunnelChart3.Title = null;
this.ucFunnelChart3.TitleFont = new System.Drawing.Font("微软雅黑", 12F);
this.ucFunnelChart3.TitleForeColor = System.Drawing.Color.Black;
this.ucFunnelChart3.ValueFormat = "0.##";
//
// ucFunnelChart4
//
this.ucFunnelChart4.Alignment = HZH_Controls.Controls.FunelChartAlignment.Left;
this.ucFunnelChart4.Direction = HZH_Controls.Controls.FunelChartDirection.Down;
this.ucFunnelChart4.Font = new System.Drawing.Font("微软雅黑", 8F);
this.ucFunnelChart4.ForeColor = System.Drawing.Color.Black;
funelChartItem96.Text = "item0";
funelChartItem96.TextForeColor = null;
funelChartItem96.Value = 10F;
funelChartItem96.ValueColor = System.Drawing.Color.FromArgb(((int)(((byte)(55)))), ((int)(((byte)(162)))), ((int)(((byte)(218)))));
funelChartItem97.Text = "item1";
funelChartItem97.TextForeColor = null;
funelChartItem97.Value = 20F;
funelChartItem97.ValueColor = System.Drawing.Color.FromArgb(((int)(((byte)(50)))), ((int)(((byte)(197)))), ((int)(((byte)(233)))));
funelChartItem98.Text = "item2";
funelChartItem98.TextForeColor = null;
funelChartItem98.Value = 30F;
funelChartItem98.ValueColor = System.Drawing.Color.FromArgb(((int)(((byte)(103)))), ((int)(((byte)(224)))), ((int)(((byte)(227)))));
funelChartItem99.Text = "item3";
funelChartItem99.TextForeColor = null;
funelChartItem99.Value = 40F;
funelChartItem99.ValueColor = System.Drawing.Color.FromArgb(((int)(((byte)(159)))), ((int)(((byte)(230)))), ((int)(((byte)(184)))));
funelChartItem100.Text = "item4";
funelChartItem100.TextForeColor = null;
funelChartItem100.Value = 50F;
funelChartItem100.ValueColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(219)))), ((int)(((byte)(92)))));
this.ucFunnelChart4.Items = new HZH_Controls.Controls.FunelChartItem[] {
funelChartItem96,
funelChartItem97,
funelChartItem98,
funelChartItem99,
funelChartItem100};
this.ucFunnelChart4.ItemTextAlign = HZH_Controls.Controls.FunelChartAlignment.Right;
this.ucFunnelChart4.Location = new System.Drawing.Point(263, 269);
this.ucFunnelChart4.Name = "ucFunnelChart4";
this.ucFunnelChart4.ShowValue = false;
this.ucFunnelChart4.Size = new System.Drawing.Size(242, 244);
this.ucFunnelChart4.TabIndex = 0;
this.ucFunnelChart4.Title = null;
this.ucFunnelChart4.TitleFont = new System.Drawing.Font("微软雅黑", 12F);
this.ucFunnelChart4.TitleForeColor = System.Drawing.Color.Black;
this.ucFunnelChart4.ValueFormat = "0.##";
//
// ucFunnelChart5
//
this.ucFunnelChart5.Alignment = HZH_Controls.Controls.FunelChartAlignment.Right;
this.ucFunnelChart5.Direction = HZH_Controls.Controls.FunelChartDirection.UP;
this.ucFunnelChart5.Font = new System.Drawing.Font("微软雅黑", 8F);
this.ucFunnelChart5.ForeColor = System.Drawing.Color.Black;
funelChartItem101.Text = "item0";
funelChartItem101.TextForeColor = null;
funelChartItem101.Value = 10F;
funelChartItem101.ValueColor = System.Drawing.Color.FromArgb(((int)(((byte)(55)))), ((int)(((byte)(162)))), ((int)(((byte)(218)))));
funelChartItem102.Text = "item1";
funelChartItem102.TextForeColor = null;
funelChartItem102.Value = 20F;
funelChartItem102.ValueColor = System.Drawing.Color.FromArgb(((int)(((byte)(50)))), ((int)(((byte)(197)))), ((int)(((byte)(233)))));
funelChartItem103.Text = "item2";
funelChartItem103.TextForeColor = null;
funelChartItem103.Value = 30F;
funelChartItem103.ValueColor = System.Drawing.Color.FromArgb(((int)(((byte)(103)))), ((int)(((byte)(224)))), ((int)(((byte)(227)))));
funelChartItem104.Text = "item3";
funelChartItem104.TextForeColor = null;
funelChartItem104.Value = 40F;
funelChartItem104.ValueColor = System.Drawing.Color.FromArgb(((int)(((byte)(159)))), ((int)(((byte)(230)))), ((int)(((byte)(184)))));
funelChartItem105.Text = "item4";
funelChartItem105.TextForeColor = null;
funelChartItem105.Value = 50F;
funelChartItem105.ValueColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(219)))), ((int)(((byte)(92)))));
this.ucFunnelChart5.Items = new HZH_Controls.Controls.FunelChartItem[] {
funelChartItem101,
funelChartItem102,
funelChartItem103,
funelChartItem104,
funelChartItem105};
this.ucFunnelChart5.ItemTextAlign = HZH_Controls.Controls.FunelChartAlignment.Left;
this.ucFunnelChart5.Location = new System.Drawing.Point(511, 19);
this.ucFunnelChart5.Name = "ucFunnelChart5";
this.ucFunnelChart5.ShowValue = false;
this.ucFunnelChart5.Size = new System.Drawing.Size(242, 244);
this.ucFunnelChart5.TabIndex = 0;
this.ucFunnelChart5.Title = null;
this.ucFunnelChart5.TitleFont = new System.Drawing.Font("微软雅黑", 12F);
this.ucFunnelChart5.TitleForeColor = System.Drawing.Color.Black;
this.ucFunnelChart5.ValueFormat = "0.##";
//
// ucFunnelChart6
//
this.ucFunnelChart6.Alignment = HZH_Controls.Controls.FunelChartAlignment.Right;
this.ucFunnelChart6.Direction = HZH_Controls.Controls.FunelChartDirection.Down;
this.ucFunnelChart6.Font = new System.Drawing.Font("微软雅黑", 8F);
this.ucFunnelChart6.ForeColor = System.Drawing.Color.Black;
funelChartItem106.Text = "item0";
funelChartItem106.TextForeColor = null;
funelChartItem106.Value = 10F;
funelChartItem106.ValueColor = System.Drawing.Color.FromArgb(((int)(((byte)(55)))), ((int)(((byte)(162)))), ((int)(((byte)(218)))));
funelChartItem107.Text = "item1";
funelChartItem107.TextForeColor = null;
funelChartItem107.Value = 20F;
funelChartItem107.ValueColor = System.Drawing.Color.FromArgb(((int)(((byte)(50)))), ((int)(((byte)(197)))), ((int)(((byte)(233)))));
funelChartItem108.Text = "item2";
funelChartItem108.TextForeColor = null;
funelChartItem108.Value = 30F;
funelChartItem108.ValueColor = System.Drawing.Color.FromArgb(((int)(((byte)(103)))), ((int)(((byte)(224)))), ((int)(((byte)(227)))));
funelChartItem109.Text = "item3";
funelChartItem109.TextForeColor = null;
funelChartItem109.Value = 40F;
funelChartItem109.ValueColor = System.Drawing.Color.FromArgb(((int)(((byte)(159)))), ((int)(((byte)(230)))), ((int)(((byte)(184)))));
funelChartItem110.Text = "item4";
funelChartItem110.TextForeColor = null;
funelChartItem110.Value = 50F;
funelChartItem110.ValueColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(219)))), ((int)(((byte)(92)))));
this.ucFunnelChart6.Items = new HZH_Controls.Controls.FunelChartItem[] {
funelChartItem106,
funelChartItem107,
funelChartItem108,
funelChartItem109,
funelChartItem110};
this.ucFunnelChart6.ItemTextAlign = HZH_Controls.Controls.FunelChartAlignment.Left;
this.ucFunnelChart6.Location = new System.Drawing.Point(511, 269);
this.ucFunnelChart6.Name = "ucFunnelChart6";
this.ucFunnelChart6.ShowValue = false;
this.ucFunnelChart6.Size = new System.Drawing.Size(242, 244);
this.ucFunnelChart6.TabIndex = 0;
this.ucFunnelChart6.Title = null;
this.ucFunnelChart6.TitleFont = new System.Drawing.Font("微软雅黑", 12F);
this.ucFunnelChart6.TitleForeColor = System.Drawing.Color.Black;
this.ucFunnelChart6.ValueFormat = "0.##";
//
// ucFunnelChart7
//
this.ucFunnelChart7.Alignment = HZH_Controls.Controls.FunelChartAlignment.Right;
this.ucFunnelChart7.Direction = HZH_Controls.Controls.FunelChartDirection.Down;
this.ucFunnelChart7.Font = new System.Drawing.Font("微软雅黑", 8F);
this.ucFunnelChart7.ForeColor = System.Drawing.Color.Black;
funelChartItem111.Text = "item0";
funelChartItem111.TextForeColor = null;
funelChartItem111.Value = 10F;
funelChartItem111.ValueColor = System.Drawing.Color.FromArgb(((int)(((byte)(55)))), ((int)(((byte)(162)))), ((int)(((byte)(218)))));
funelChartItem112.Text = "item1";
funelChartItem112.TextForeColor = null;
funelChartItem112.Value = 20F;
funelChartItem112.ValueColor = System.Drawing.Color.FromArgb(((int)(((byte)(50)))), ((int)(((byte)(197)))), ((int)(((byte)(233)))));
funelChartItem113.Text = "item2";
funelChartItem113.TextForeColor = null;
funelChartItem113.Value = 30F;
funelChartItem113.ValueColor = System.Drawing.Color.FromArgb(((int)(((byte)(103)))), ((int)(((byte)(224)))), ((int)(((byte)(227)))));
funelChartItem114.Text = "item3";
funelChartItem114.TextForeColor = null;
funelChartItem114.Value = 40F;
funelChartItem114.ValueColor = System.Drawing.Color.FromArgb(((int)(((byte)(159)))), ((int)(((byte)(230)))), ((int)(((byte)(184)))));
funelChartItem115.Text = "item4";
funelChartItem115.TextForeColor = null;
funelChartItem115.Value = 50F;
funelChartItem115.ValueColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(219)))), ((int)(((byte)(92)))));
this.ucFunnelChart7.Items = new HZH_Controls.Controls.FunelChartItem[] {
funelChartItem111,
funelChartItem112,
funelChartItem113,
funelChartItem114,
funelChartItem115};
this.ucFunnelChart7.ItemTextAlign = HZH_Controls.Controls.FunelChartAlignment.Left;
this.ucFunnelChart7.Location = new System.Drawing.Point(759, 19);
this.ucFunnelChart7.Name = "ucFunnelChart7";
this.ucFunnelChart7.ShowValue = false;
this.ucFunnelChart7.Size = new System.Drawing.Size(242, 244);
this.ucFunnelChart7.TabIndex = 0;
this.ucFunnelChart7.Title = null;
this.ucFunnelChart7.TitleFont = new System.Drawing.Font("微软雅黑", 12F);
this.ucFunnelChart7.TitleForeColor = System.Drawing.Color.Black;
this.ucFunnelChart7.ValueFormat = "0.##";
//
// ucFunnelChart8
//
this.ucFunnelChart8.Alignment = HZH_Controls.Controls.FunelChartAlignment.Right;
this.ucFunnelChart8.Direction = HZH_Controls.Controls.FunelChartDirection.UP;
this.ucFunnelChart8.Font = new System.Drawing.Font("微软雅黑", 8F);
this.ucFunnelChart8.ForeColor = System.Drawing.Color.Black;
funelChartItem116.Text = "item0";
funelChartItem116.TextForeColor = null;
funelChartItem116.Value = 10F;
funelChartItem116.ValueColor = System.Drawing.Color.FromArgb(((int)(((byte)(55)))), ((int)(((byte)(162)))), ((int)(((byte)(218)))));
funelChartItem117.Text = "item1";
funelChartItem117.TextForeColor = null;
funelChartItem117.Value = 20F;
funelChartItem117.ValueColor = System.Drawing.Color.FromArgb(((int)(((byte)(50)))), ((int)(((byte)(197)))), ((int)(((byte)(233)))));
funelChartItem118.Text = "item2";
funelChartItem118.TextForeColor = null;
funelChartItem118.Value = 30F;
funelChartItem118.ValueColor = System.Drawing.Color.FromArgb(((int)(((byte)(103)))), ((int)(((byte)(224)))), ((int)(((byte)(227)))));
funelChartItem119.Text = "item3";
funelChartItem119.TextForeColor = null;
funelChartItem119.Value = 40F;
funelChartItem119.ValueColor = System.Drawing.Color.FromArgb(((int)(((byte)(159)))), ((int)(((byte)(230)))), ((int)(((byte)(184)))));
funelChartItem120.Text = "item4";
funelChartItem120.TextForeColor = null;
funelChartItem120.Value = 50F;
funelChartItem120.ValueColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(219)))), ((int)(((byte)(92)))));
this.ucFunnelChart8.Items = new HZH_Controls.Controls.FunelChartItem[] {
funelChartItem116,
funelChartItem117,
funelChartItem118,
funelChartItem119,
funelChartItem120};
this.ucFunnelChart8.ItemTextAlign = HZH_Controls.Controls.FunelChartAlignment.Left;
this.ucFunnelChart8.Location = new System.Drawing.Point(759, 269);
this.ucFunnelChart8.Name = "ucFunnelChart8";
this.ucFunnelChart8.ShowValue = false;
this.ucFunnelChart8.Size = new System.Drawing.Size(242, 244);
this.ucFunnelChart8.TabIndex = 0;
this.ucFunnelChart8.Title = null;
this.ucFunnelChart8.TitleFont = new System.Drawing.Font("微软雅黑", 12F);
this.ucFunnelChart8.TitleForeColor = System.Drawing.Color.Black;
this.ucFunnelChart8.ValueFormat = "0.##";
//
// ucFunnelChart9
//
this.ucFunnelChart9.Alignment = HZH_Controls.Controls.FunelChartAlignment.Center;
this.ucFunnelChart9.Direction = HZH_Controls.Controls.FunelChartDirection.UP;
this.ucFunnelChart9.Font = new System.Drawing.Font("微软雅黑", 8F);
this.ucFunnelChart9.ForeColor = System.Drawing.Color.Black;
funelChartItem121.Text = "产品A";
funelChartItem121.TextForeColor = null;
funelChartItem121.Value = 10F;
funelChartItem121.ValueColor = System.Drawing.Color.FromArgb(((int)(((byte)(55)))), ((int)(((byte)(162)))), ((int)(((byte)(218)))));
funelChartItem122.Text = "产品B";
funelChartItem122.TextForeColor = null;
funelChartItem122.Value = 30F;
funelChartItem122.ValueColor = System.Drawing.Color.FromArgb(((int)(((byte)(50)))), ((int)(((byte)(197)))), ((int)(((byte)(233)))));
funelChartItem123.Text = "产品C";
funelChartItem123.TextForeColor = null;
funelChartItem123.Value = 60F;
funelChartItem123.ValueColor = System.Drawing.Color.FromArgb(((int)(((byte)(103)))), ((int)(((byte)(224)))), ((int)(((byte)(227)))));
funelChartItem124.Text = "产品D";
funelChartItem124.TextForeColor = null;
funelChartItem124.Value = 80F;
funelChartItem124.ValueColor = System.Drawing.Color.FromArgb(((int)(((byte)(159)))), ((int)(((byte)(230)))), ((int)(((byte)(184)))));
funelChartItem125.Text = "产品E";
funelChartItem125.TextForeColor = null;
funelChartItem125.Value = 100F;
funelChartItem125.ValueColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(219)))), ((int)(((byte)(92)))));
this.ucFunnelChart9.Items = new HZH_Controls.Controls.FunelChartItem[] {
funelChartItem121,
funelChartItem122,
funelChartItem123,
funelChartItem124,
funelChartItem125};
this.ucFunnelChart9.ItemTextAlign = HZH_Controls.Controls.FunelChartAlignment.Right;
this.ucFunnelChart9.Location = new System.Drawing.Point(15, 535);
this.ucFunnelChart9.Name = "ucFunnelChart9";
this.ucFunnelChart9.ShowValue = false;
this.ucFunnelChart9.Size = new System.Drawing.Size(242, 244);
this.ucFunnelChart9.TabIndex = 0;
this.ucFunnelChart9.Title = null;
this.ucFunnelChart9.TitleFont = new System.Drawing.Font("微软雅黑", 12F);
this.ucFunnelChart9.TitleForeColor = System.Drawing.Color.Black;
this.ucFunnelChart9.ValueFormat = "0.##";
//
// ucFunnelChart10
//
this.ucFunnelChart10.Alignment = HZH_Controls.Controls.FunelChartAlignment.Left;
this.ucFunnelChart10.Direction = HZH_Controls.Controls.FunelChartDirection.UP;
this.ucFunnelChart10.Font = new System.Drawing.Font("微软雅黑", 8F);
this.ucFunnelChart10.ForeColor = System.Drawing.Color.Black;
funelChartItem126.Text = "item0";
funelChartItem126.TextForeColor = null;
funelChartItem126.Value = 10F;
funelChartItem126.ValueColor = System.Drawing.Color.FromArgb(((int)(((byte)(55)))), ((int)(((byte)(162)))), ((int)(((byte)(218)))));
funelChartItem127.Text = "item1";
funelChartItem127.TextForeColor = null;
funelChartItem127.Value = 30F;
funelChartItem127.ValueColor = System.Drawing.Color.FromArgb(((int)(((byte)(50)))), ((int)(((byte)(197)))), ((int)(((byte)(233)))));
funelChartItem128.Text = "item2";
funelChartItem128.TextForeColor = null;
funelChartItem128.Value = 60F;
funelChartItem128.ValueColor = System.Drawing.Color.FromArgb(((int)(((byte)(103)))), ((int)(((byte)(224)))), ((int)(((byte)(227)))));
funelChartItem129.Text = "item3";
funelChartItem129.TextForeColor = null;
funelChartItem129.Value = 80F;
funelChartItem129.ValueColor = System.Drawing.Color.FromArgb(((int)(((byte)(159)))), ((int)(((byte)(230)))), ((int)(((byte)(184)))));
funelChartItem130.Text = "item4";
funelChartItem130.TextForeColor = null;
funelChartItem130.Value = 100F;
funelChartItem130.ValueColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(219)))), ((int)(((byte)(92)))));
this.ucFunnelChart10.Items = new HZH_Controls.Controls.FunelChartItem[] {
funelChartItem126,
funelChartItem127,
funelChartItem128,
funelChartItem129,
funelChartItem130};
this.ucFunnelChart10.ItemTextAlign = HZH_Controls.Controls.FunelChartAlignment.Right;
this.ucFunnelChart10.Location = new System.Drawing.Point(263, 535);
this.ucFunnelChart10.Name = "ucFunnelChart10";
this.ucFunnelChart10.ShowValue = false;
this.ucFunnelChart10.Size = new System.Drawing.Size(242, 244);
this.ucFunnelChart10.TabIndex = 0;
this.ucFunnelChart10.Title = null;
this.ucFunnelChart10.TitleFont = new System.Drawing.Font("微软雅黑", 12F);
this.ucFunnelChart10.TitleForeColor = System.Drawing.Color.Black;
this.ucFunnelChart10.ValueFormat = "0.##";
//
// ucFunnelChart11
//
this.ucFunnelChart11.Alignment = HZH_Controls.Controls.FunelChartAlignment.Right;
this.ucFunnelChart11.Direction = HZH_Controls.Controls.FunelChartDirection.UP;
this.ucFunnelChart11.Font = new System.Drawing.Font("微软雅黑", 8F);
this.ucFunnelChart11.ForeColor = System.Drawing.Color.Black;
funelChartItem131.Text = "item0";
funelChartItem131.TextForeColor = null;
funelChartItem131.Value = 10F;
funelChartItem131.ValueColor = System.Drawing.Color.FromArgb(((int)(((byte)(55)))), ((int)(((byte)(162)))), ((int)(((byte)(218)))));
funelChartItem132.Text = "item1";
funelChartItem132.TextForeColor = null;
funelChartItem132.Value = 30F;
funelChartItem132.ValueColor = System.Drawing.Color.FromArgb(((int)(((byte)(50)))), ((int)(((byte)(197)))), ((int)(((byte)(233)))));
funelChartItem133.Text = "item2";
funelChartItem133.TextForeColor = null;
funelChartItem133.Value = 60F;
funelChartItem133.ValueColor = System.Drawing.Color.FromArgb(((int)(((byte)(103)))), ((int)(((byte)(224)))), ((int)(((byte)(227)))));
funelChartItem134.Text = "item3";
funelChartItem134.TextForeColor = null;
funelChartItem134.Value = 80F;
funelChartItem134.ValueColor = System.Drawing.Color.FromArgb(((int)(((byte)(159)))), ((int)(((byte)(230)))), ((int)(((byte)(184)))));
funelChartItem135.Text = "item4";
funelChartItem135.TextForeColor = null;
funelChartItem135.Value = 100F;
funelChartItem135.ValueColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(219)))), ((int)(((byte)(92)))));
this.ucFunnelChart11.Items = new HZH_Controls.Controls.FunelChartItem[] {
funelChartItem131,
funelChartItem132,
funelChartItem133,
funelChartItem134,
funelChartItem135};
this.ucFunnelChart11.ItemTextAlign = HZH_Controls.Controls.FunelChartAlignment.Left;
this.ucFunnelChart11.Location = new System.Drawing.Point(511, 535);
this.ucFunnelChart11.Name = "ucFunnelChart11";
this.ucFunnelChart11.ShowValue = false;
this.ucFunnelChart11.Size = new System.Drawing.Size(242, 244);
this.ucFunnelChart11.TabIndex = 0;
this.ucFunnelChart11.Title = null;
this.ucFunnelChart11.TitleFont = new System.Drawing.Font("微软雅黑", 12F);
this.ucFunnelChart11.TitleForeColor = System.Drawing.Color.Black;
this.ucFunnelChart11.ValueFormat = "0.##";
//
// ucFunnelChart12
//
this.ucFunnelChart12.Alignment = HZH_Controls.Controls.FunelChartAlignment.Center;
this.ucFunnelChart12.Direction = HZH_Controls.Controls.FunelChartDirection.Down;
this.ucFunnelChart12.Font = new System.Drawing.Font("微软雅黑", 8F);
this.ucFunnelChart12.ForeColor = System.Drawing.Color.Black;
funelChartItem136.Text = "item0";
funelChartItem136.TextForeColor = null;
funelChartItem136.Value = 10F;
funelChartItem136.ValueColor = System.Drawing.Color.FromArgb(((int)(((byte)(55)))), ((int)(((byte)(162)))), ((int)(((byte)(218)))));
funelChartItem137.Text = "item1";
funelChartItem137.TextForeColor = null;
funelChartItem137.Value = 30F;
funelChartItem137.ValueColor = System.Drawing.Color.FromArgb(((int)(((byte)(50)))), ((int)(((byte)(197)))), ((int)(((byte)(233)))));
funelChartItem138.Text = "item2";
funelChartItem138.TextForeColor = null;
funelChartItem138.Value = 60F;
funelChartItem138.ValueColor = System.Drawing.Color.FromArgb(((int)(((byte)(103)))), ((int)(((byte)(224)))), ((int)(((byte)(227)))));
funelChartItem139.Text = "item3";
funelChartItem139.TextForeColor = null;
funelChartItem139.Value = 80F;
funelChartItem139.ValueColor = System.Drawing.Color.FromArgb(((int)(((byte)(159)))), ((int)(((byte)(230)))), ((int)(((byte)(184)))));
funelChartItem140.Text = "item4";
funelChartItem140.TextForeColor = null;
funelChartItem140.Value = 100F;
funelChartItem140.ValueColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(219)))), ((int)(((byte)(92)))));
this.ucFunnelChart12.Items = new HZH_Controls.Controls.FunelChartItem[] {
funelChartItem136,
funelChartItem137,
funelChartItem138,
funelChartItem139,
funelChartItem140};
this.ucFunnelChart12.ItemTextAlign = HZH_Controls.Controls.FunelChartAlignment.Right;
this.ucFunnelChart12.Location = new System.Drawing.Point(15, 785);
this.ucFunnelChart12.Name = "ucFunnelChart12";
this.ucFunnelChart12.ShowValue = false;
this.ucFunnelChart12.Size = new System.Drawing.Size(242, 244);
this.ucFunnelChart12.TabIndex = 0;
this.ucFunnelChart12.Title = null;
this.ucFunnelChart12.TitleFont = new System.Drawing.Font("微软雅黑", 12F);
this.ucFunnelChart12.TitleForeColor = System.Drawing.Color.Black;
this.ucFunnelChart12.ValueFormat = "0.##";
//
// ucFunnelChart13
//
this.ucFunnelChart13.Alignment = HZH_Controls.Controls.FunelChartAlignment.Right;
this.ucFunnelChart13.Direction = HZH_Controls.Controls.FunelChartDirection.Down;
this.ucFunnelChart13.Font = new System.Drawing.Font("微软雅黑", 8F);
this.ucFunnelChart13.ForeColor = System.Drawing.Color.Black;
funelChartItem141.Text = "item0";
funelChartItem141.TextForeColor = null;
funelChartItem141.Value = 10F;
funelChartItem141.ValueColor = System.Drawing.Color.FromArgb(((int)(((byte)(55)))), ((int)(((byte)(162)))), ((int)(((byte)(218)))));
funelChartItem142.Text = "item1";
funelChartItem142.TextForeColor = null;
funelChartItem142.Value = 30F;
funelChartItem142.ValueColor = System.Drawing.Color.FromArgb(((int)(((byte)(50)))), ((int)(((byte)(197)))), ((int)(((byte)(233)))));
funelChartItem143.Text = "item2";
funelChartItem143.TextForeColor = null;
funelChartItem143.Value = 60F;
funelChartItem143.ValueColor = System.Drawing.Color.FromArgb(((int)(((byte)(103)))), ((int)(((byte)(224)))), ((int)(((byte)(227)))));
funelChartItem144.Text = "item3";
funelChartItem144.TextForeColor = null;
funelChartItem144.Value = 80F;
funelChartItem144.ValueColor = System.Drawing.Color.FromArgb(((int)(((byte)(159)))), ((int)(((byte)(230)))), ((int)(((byte)(184)))));
funelChartItem145.Text = "item4";
funelChartItem145.TextForeColor = null;
funelChartItem145.Value = 100F;
funelChartItem145.ValueColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(219)))), ((int)(((byte)(92)))));
this.ucFunnelChart13.Items = new HZH_Controls.Controls.FunelChartItem[] {
funelChartItem141,
funelChartItem142,
funelChartItem143,
funelChartItem144,
funelChartItem145};
this.ucFunnelChart13.ItemTextAlign = HZH_Controls.Controls.FunelChartAlignment.Left;
this.ucFunnelChart13.Location = new System.Drawing.Point(759, 535);
this.ucFunnelChart13.Name = "ucFunnelChart13";
this.ucFunnelChart13.ShowValue = false;
this.ucFunnelChart13.Size = new System.Drawing.Size(242, 244);
this.ucFunnelChart13.TabIndex = 0;
this.ucFunnelChart13.Title = null;
this.ucFunnelChart13.TitleFont = new System.Drawing.Font("微软雅黑", 12F);
this.ucFunnelChart13.TitleForeColor = System.Drawing.Color.Black;
this.ucFunnelChart13.ValueFormat = "0.##";
//
// ucFunnelChart14
//
this.ucFunnelChart14.Alignment = HZH_Controls.Controls.FunelChartAlignment.Left;
this.ucFunnelChart14.Direction = HZH_Controls.Controls.FunelChartDirection.Down;
this.ucFunnelChart14.Font = new System.Drawing.Font("微软雅黑", 8F);
this.ucFunnelChart14.ForeColor = System.Drawing.Color.Black;
funelChartItem146.Text = "item0";
funelChartItem146.TextForeColor = null;
funelChartItem146.Value = 10F;
funelChartItem146.ValueColor = System.Drawing.Color.FromArgb(((int)(((byte)(55)))), ((int)(((byte)(162)))), ((int)(((byte)(218)))));
funelChartItem147.Text = "item1";
funelChartItem147.TextForeColor = null;
funelChartItem147.Value = 30F;
funelChartItem147.ValueColor = System.Drawing.Color.FromArgb(((int)(((byte)(50)))), ((int)(((byte)(197)))), ((int)(((byte)(233)))));
funelChartItem148.Text = "item2";
funelChartItem148.TextForeColor = null;
funelChartItem148.Value = 60F;
funelChartItem148.ValueColor = System.Drawing.Color.FromArgb(((int)(((byte)(103)))), ((int)(((byte)(224)))), ((int)(((byte)(227)))));
funelChartItem149.Text = "item3";
funelChartItem149.TextForeColor = null;
funelChartItem149.Value = 80F;
funelChartItem149.ValueColor = System.Drawing.Color.FromArgb(((int)(((byte)(159)))), ((int)(((byte)(230)))), ((int)(((byte)(184)))));
funelChartItem150.Text = "item4";
funelChartItem150.TextForeColor = null;
funelChartItem150.Value = 100F;
funelChartItem150.ValueColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(219)))), ((int)(((byte)(92)))));
this.ucFunnelChart14.Items = new HZH_Controls.Controls.FunelChartItem[] {
funelChartItem146,
funelChartItem147,
funelChartItem148,
funelChartItem149,
funelChartItem150};
this.ucFunnelChart14.ItemTextAlign = HZH_Controls.Controls.FunelChartAlignment.Right;
this.ucFunnelChart14.Location = new System.Drawing.Point(263, 785);
this.ucFunnelChart14.Name = "ucFunnelChart14";
this.ucFunnelChart14.ShowValue = false;
this.ucFunnelChart14.Size = new System.Drawing.Size(242, 244);
this.ucFunnelChart14.TabIndex = 0;
this.ucFunnelChart14.Title = null;
this.ucFunnelChart14.TitleFont = new System.Drawing.Font("微软雅黑", 12F);
this.ucFunnelChart14.TitleForeColor = System.Drawing.Color.Black;
this.ucFunnelChart14.ValueFormat = "0.##";
//
// ucFunnelChart15
//
this.ucFunnelChart15.Alignment = HZH_Controls.Controls.FunelChartAlignment.Right;
this.ucFunnelChart15.Direction = HZH_Controls.Controls.FunelChartDirection.Down;
this.ucFunnelChart15.Font = new System.Drawing.Font("微软雅黑", 8F);
this.ucFunnelChart15.ForeColor = System.Drawing.Color.Black;
funelChartItem151.Text = "item0";
funelChartItem151.TextForeColor = null;
funelChartItem151.Value = 10F;
funelChartItem151.ValueColor = System.Drawing.Color.FromArgb(((int)(((byte)(55)))), ((int)(((byte)(162)))), ((int)(((byte)(218)))));
funelChartItem152.Text = "item1";
funelChartItem152.TextForeColor = null;
funelChartItem152.Value = 30F;
funelChartItem152.ValueColor = System.Drawing.Color.FromArgb(((int)(((byte)(50)))), ((int)(((byte)(197)))), ((int)(((byte)(233)))));
funelChartItem153.Text = "item2";
funelChartItem153.TextForeColor = null;
funelChartItem153.Value = 60F;
funelChartItem153.ValueColor = System.Drawing.Color.FromArgb(((int)(((byte)(103)))), ((int)(((byte)(224)))), ((int)(((byte)(227)))));
funelChartItem154.Text = "item3";
funelChartItem154.TextForeColor = null;
funelChartItem154.Value = 80F;
funelChartItem154.ValueColor = System.Drawing.Color.FromArgb(((int)(((byte)(159)))), ((int)(((byte)(230)))), ((int)(((byte)(184)))));
funelChartItem155.Text = "item4";
funelChartItem155.TextForeColor = null;
funelChartItem155.Value = 100F;
funelChartItem155.ValueColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(219)))), ((int)(((byte)(92)))));
this.ucFunnelChart15.Items = new HZH_Controls.Controls.FunelChartItem[] {
funelChartItem151,
funelChartItem152,
funelChartItem153,
funelChartItem154,
funelChartItem155};
this.ucFunnelChart15.ItemTextAlign = HZH_Controls.Controls.FunelChartAlignment.Left;
this.ucFunnelChart15.Location = new System.Drawing.Point(511, 785);
this.ucFunnelChart15.Name = "ucFunnelChart15";
this.ucFunnelChart15.ShowValue = false;
this.ucFunnelChart15.Size = new System.Drawing.Size(242, 244);
this.ucFunnelChart15.TabIndex = 0;
this.ucFunnelChart15.Title = null;
this.ucFunnelChart15.TitleFont = new System.Drawing.Font("微软雅黑", 12F);
this.ucFunnelChart15.TitleForeColor = System.Drawing.Color.Black;
this.ucFunnelChart15.ValueFormat = "0.##";
//
// ucFunnelChart16
//
this.ucFunnelChart16.Alignment = HZH_Controls.Controls.FunelChartAlignment.Right;
this.ucFunnelChart16.Direction = HZH_Controls.Controls.FunelChartDirection.UP;
this.ucFunnelChart16.Font = new System.Drawing.Font("微软雅黑", 8F);
this.ucFunnelChart16.ForeColor = System.Drawing.Color.Black;
funelChartItem156.Text = "item0";
funelChartItem156.TextForeColor = null;
funelChartItem156.Value = 10F;
funelChartItem156.ValueColor = System.Drawing.Color.FromArgb(((int)(((byte)(55)))), ((int)(((byte)(162)))), ((int)(((byte)(218)))));
funelChartItem157.Text = "item1";
funelChartItem157.TextForeColor = null;
funelChartItem157.Value = 30F;
funelChartItem157.ValueColor = System.Drawing.Color.FromArgb(((int)(((byte)(50)))), ((int)(((byte)(197)))), ((int)(((byte)(233)))));
funelChartItem158.Text = "item2";
funelChartItem158.TextForeColor = null;
funelChartItem158.Value = 60F;
funelChartItem158.ValueColor = System.Drawing.Color.FromArgb(((int)(((byte)(103)))), ((int)(((byte)(224)))), ((int)(((byte)(227)))));
funelChartItem159.Text = "item3";
funelChartItem159.TextForeColor = null;
funelChartItem159.Value = 80F;
funelChartItem159.ValueColor = System.Drawing.Color.FromArgb(((int)(((byte)(159)))), ((int)(((byte)(230)))), ((int)(((byte)(184)))));
funelChartItem160.Text = "item4";
funelChartItem160.TextForeColor = null;
funelChartItem160.Value = 100F;
funelChartItem160.ValueColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(219)))), ((int)(((byte)(92)))));
this.ucFunnelChart16.Items = new HZH_Controls.Controls.FunelChartItem[] {
funelChartItem156,
funelChartItem157,
funelChartItem158,
funelChartItem159,
funelChartItem160};
this.ucFunnelChart16.ItemTextAlign = HZH_Controls.Controls.FunelChartAlignment.Left;
this.ucFunnelChart16.Location = new System.Drawing.Point(759, 785);
this.ucFunnelChart16.Name = "ucFunnelChart16";
this.ucFunnelChart16.ShowValue = false;
this.ucFunnelChart16.Size = new System.Drawing.Size(242, 244);
this.ucFunnelChart16.TabIndex = 0;
this.ucFunnelChart16.Title = null;
this.ucFunnelChart16.TitleFont = new System.Drawing.Font("微软雅黑", 12F);
this.ucFunnelChart16.TitleForeColor = System.Drawing.Color.Black;
this.ucFunnelChart16.ValueFormat = "0.##";
//
// UCTestFunnelChart
//
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
this.BackColor = System.Drawing.Color.White;
this.Controls.Add(this.ucFunnelChart16);
this.Controls.Add(this.ucFunnelChart8);
this.Controls.Add(this.ucFunnelChart15);
this.Controls.Add(this.ucFunnelChart6);
this.Controls.Add(this.ucFunnelChart14);
this.Controls.Add(this.ucFunnelChart4);
this.Controls.Add(this.ucFunnelChart13);
this.Controls.Add(this.ucFunnelChart7);
this.Controls.Add(this.ucFunnelChart12);
this.Controls.Add(this.ucFunnelChart2);
this.Controls.Add(this.ucFunnelChart11);
this.Controls.Add(this.ucFunnelChart5);
this.Controls.Add(this.ucFunnelChart10);
this.Controls.Add(this.ucFunnelChart3);
this.Controls.Add(this.ucFunnelChart9);
this.Controls.Add(this.ucFunnelChart1);
this.Name = "UCTestFunnelChart";
this.Size = new System.Drawing.Size(1041, 1082);
this.ResumeLayout(false);
}
#endregion
private HZH_Controls.Controls.UCFunnelChart ucFunnelChart1;
private HZH_Controls.Controls.UCFunnelChart ucFunnelChart2;
private HZH_Controls.Controls.UCFunnelChart ucFunnelChart3;
private HZH_Controls.Controls.UCFunnelChart ucFunnelChart4;
private HZH_Controls.Controls.UCFunnelChart ucFunnelChart5;
private HZH_Controls.Controls.UCFunnelChart ucFunnelChart6;
private HZH_Controls.Controls.UCFunnelChart ucFunnelChart7;
private HZH_Controls.Controls.UCFunnelChart ucFunnelChart8;
private HZH_Controls.Controls.UCFunnelChart ucFunnelChart9;
private HZH_Controls.Controls.UCFunnelChart ucFunnelChart10;
private HZH_Controls.Controls.UCFunnelChart ucFunnelChart11;
private HZH_Controls.Controls.UCFunnelChart ucFunnelChart12;
private HZH_Controls.Controls.UCFunnelChart ucFunnelChart13;
private HZH_Controls.Controls.UCFunnelChart ucFunnelChart14;
private HZH_Controls.Controls.UCFunnelChart ucFunnelChart15;
private HZH_Controls.Controls.UCFunnelChart ucFunnelChart16;
}
}
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Drawing;
using System.Data;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace Test.UC
{
[ToolboxItem(false)]
public partial class UCTestFunnelChart : UserControl
{
public UCTestFunnelChart()
{
InitializeComponent();
}
}
}
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" use="required" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
</root>
\ No newline at end of file
......@@ -40,7 +40,7 @@
this.ucDataGridView1.Dock = System.Windows.Forms.DockStyle.Fill;
this.ucDataGridView1.HeadFont = new System.Drawing.Font("微软雅黑", 12F);
this.ucDataGridView1.HeadHeight = 40;
this.ucDataGridView1.HeadPadingLeft = 24;
this.ucDataGridView1.HeadPadingLeft = 0;
this.ucDataGridView1.HeadTextColor = System.Drawing.Color.Black;
this.ucDataGridView1.IsCloseAutoHeight = false;
this.ucDataGridView1.IsShowCheckBox = false;
......
支持 Markdown 格式
你添加了 0 到此讨论。请谨慎行事。
Finish editing this message first!