C#绘制曲线图的方法

本文实例讲述了C#绘制曲线图的方法。分享给大家供大家参考。具体如下:

1. 曲线图效果:

2. C#代码:

/// <summary>
/// 自动根据参数调整图像大小
/// </summary>
public void Fit()
{
 //计算字体距离
 intFontSpace = FontSize + 5;
 //计算图像边距
 float fltSpace = Math.Min(Width / 6, Height / 6);
 XSpace = fltSpace;
 YSpace = fltSpace;
 //计算X轴刻度宽度
 XSlice = (Width - 2 * XSpace) / (Keys.Length - 1);
 //计算Y轴刻度宽度和Y轴刻度开始值
 float fltMinValue = 0;
 float fltMaxValue = 0;
 for (int i = 0; i < Values.Length; i++)
 {
  if (Values[i] < fltMinValue)
  {
  fltMinValue = Values[i];
  }
  else if (Values[i] > fltMaxValue)
  {
  fltMaxValue = Values[i];
  }
 }
 if (YSliceBegin > fltMinValue)
 {
  YSliceBegin = fltMinValue;
 }
 int intYSliceCount = (int)(fltMaxValue / YSliceValue);
 if (fltMaxValue % YSliceValue != 0)
 {
  intYSliceCount++;
 }
 YSlice = (Height - 2 * YSpace) / intYSliceCount;
}

3. 数据缩小一个级别的效果:

4. 完整代码 DrawingCurve.cs:

using System;
using System.Collections.Generic;
using System.Text;
using System.Drawing;
using System.Data;
using System.Drawing.Drawing2D;
namespace SarchPMS.Business.Draw
{
 public class DrawingCurve : DrawingChart
 {
  /// <summary>
  /// 画曲线图
  /// </summary>
  /// <param name="dsParameter"></param>
  /// <returns></returns>
  public override Bitmap DrawImage(DataSet dsParameter)
  {
   Curve2D cuv2D = new Curve2D();
   cuv2D.Fit();
   return cuv2D.CreateImage();
  }
 }
 public class Curve2D
 {
  private Graphics objGraphics; //Graphics 类提供将对象绘制到显示设备的方法
  private Bitmap objBitmap; //位图对象
  private float fltWidth = 480; //图像宽度
  private float fltHeight = 248; //图像高度
  private float fltXSlice = 50; //X轴刻度宽度
  private float fltYSlice = 50; //Y轴刻度宽度
  private float fltYSliceValue = 20; //Y轴刻度的数值宽度
  private float fltYSliceBegin = 0; //Y轴刻度开始值
  private float fltTension = 0.5f;
  private string strTitle = "曲线图"; //标题
  private string strXAxisText = "月份"; //X轴说明文字
  private string strYAxisText = "万元"; //Y轴说明文字
  private string[] strsKeys = new string[] { "一月", "二月", "三月", "四月", "五月", "六月", "七月", "八月", "九月", "十月", "十一月", "十二月" }; //键
  private float[] fltsValues = new float[] { 20.0f, 30.0f, 50.0f, 55.4f, 21.6f, 12.8f, 99.5f, 36.4f, 78.2f, 56.4f, 45.8f, 66.5f, 99.5f, 36.4f, 78.2f, 56.4f, 45.8f, 66.5f, 20.0f, 30.0f, 50.0f, 55.4f, 21.6f, 12.8f }; //值
  private Color clrBgColor = Color.Snow; //背景色
  private Color clrTextColor = Color.Black; //文字颜色
  private Color clrBorderColor = Color.Black; //整体边框颜色
  private Color clrAxisColor = Color.Black; //轴线颜色
  private Color clrAxisTextColor = Color.Black; //轴说明文字颜色
  private Color clrSliceTextColor = Color.Black; //刻度文字颜色
  private Color clrSliceColor = Color.Black; //刻度颜色
  private Color[] clrsCurveColors = new Color[] { Color.Red, Color.Blue }; //曲线颜色
  private float fltXSpace = 100f; //图像左右距离边缘距离
  private float fltYSpace = 100f; //图像上下距离边缘距离
  private int intFontSize = 9; //字体大小号数
  private float fltXRotateAngle = 30f; //X轴文字旋转角度
  private float fltYRotateAngle = 0f; //Y轴文字旋转角度
  private int intCurveSize = 2; //曲线线条大小
  private int intFontSpace = 0; //intFontSpace 是字体大小和距离调整出来的一个比较适合的数字
  #region 公共属性
  /// <summary>
  /// 图像的宽度
  /// </summary>
  public float Width
  {
   set
   {
    if (value < 100)
    {
     fltWidth = 100;
    }
    else
    {
     fltWidth = value;
    }
   }
   get
   {
    if (fltWidth <= 100)
    {
     return 100;
    }
    else
    {
     return fltWidth;
    }
   }
  }
  /// <summary>
  /// 图像的高度
  /// </summary>
  public float Height
  {
   set
   {
    if (value < 100)
    {
     fltHeight = 100;
    }
    else
    {
     fltHeight = value;
    }
   }
   get
   {
    if (fltHeight <= 100)
    {
     return 100;
    }
    else
    {
     return fltHeight;
    }
   }
  }
  /// <summary>
  /// X轴刻度宽度
  /// </summary>
  public float XSlice
  {
   set { fltXSlice = value; }
   get { return fltXSlice; }
  }
  /// <summary>
  /// Y轴刻度宽度
  /// </summary>
  public float YSlice
  {
   set { fltYSlice = value; }
   get { return fltYSlice; }
  }
  /// <summary>
  /// Y轴刻度的数值宽度
  /// </summary>
  public float YSliceValue
  {
   set { fltYSliceValue = value; }
   get { return fltYSliceValue; }
  }
  /// <summary>
  /// Y轴刻度开始值
  /// </summary>
  public float YSliceBegin
  {
   set { fltYSliceBegin = value; }
   get { return fltYSliceBegin; }
  }
  /// <summary>
  /// 张力系数
  /// </summary>
  public float Tension
  {
   set
   {
    if (value < 0.0f && value > 1.0f)
    {
     fltTension = 0.5f;
    }
    else
    {
     fltTension = value;
    }
   }
   get
   {
    return fltTension;
   }
  }
  /// <summary>
  /// 标题
  /// </summary>
  public string Title
  {
   set { strTitle = value; }
   get { return strTitle; }
  }
  /// <summary>
  /// 键,X轴数据
  /// </summary>
  public string[] Keys
  {
   set { strsKeys = value; }
   get { return strsKeys; }
  }
  /// <summary>
  /// 值,Y轴数据
  /// </summary>
  public float[] Values
  {
   set { fltsValues = value; }
   get { return fltsValues; }
  }
  /// <summary>
  /// 背景色
  /// </summary>
  public Color BgColor
  {
   set { clrBgColor = value; }
   get { return clrBgColor; }
  }
  /// <summary>
  /// 文字颜色
  /// </summary>
  public Color TextColor
  {
   set { clrTextColor = value; }
   get { return clrTextColor; }
  }
  /// <summary>
  /// 整体边框颜色
  /// </summary>
  public Color BorderColor
  {
   set { clrBorderColor = value; }
   get { return clrBorderColor; }
  }
  /// <summary>
  /// 轴线颜色
  /// </summary>
  public Color AxisColor
  {
   set { clrAxisColor = value; }
   get { return clrAxisColor; }
  }
  /// <summary>
  /// X轴说明文字
  /// </summary>
  public string XAxisText
  {
   set { strXAxisText = value; }
   get { return strXAxisText; }
  }
  /// <summary>
  /// Y轴说明文字
  /// </summary>
  public string YAxisText
  {
   set { strYAxisText = value; }
   get { return strYAxisText; }
  }
  /// <summary>
  /// 轴说明文字颜色
  /// </summary>
  public Color AxisTextColor
  {
   set { clrAxisTextColor = value; }
   get { return clrAxisTextColor; }
  }
  /// <summary>
  /// 刻度文字颜色
  /// </summary>
  public Color SliceTextColor
  {
   set { clrSliceTextColor = value; }
   get { return clrSliceTextColor; }
  }
  /// <summary>
  /// 刻度颜色
  /// </summary>
  public Color SliceColor
  {
   set { clrSliceColor = value; }
   get { return clrSliceColor; }
  }
  /// <summary>
  /// 曲线颜色
  /// </summary>
  public Color[] CurveColors
  {
   set { clrsCurveColors = value; }
   get { return clrsCurveColors; }
  }
  /// <summary>
  /// X轴文字旋转角度
  /// </summary>
  public float XRotateAngle
  {
   get { return fltXRotateAngle; }
   set { fltXRotateAngle = value; }
  }
  /// <summary>
  /// Y轴文字旋转角度
  /// </summary>
  public float YRotateAngle
  {
   get { return fltYRotateAngle; }
   set { fltYRotateAngle = value; }
  }
  /// <summary>
  /// 图像左右距离边缘距离
  /// </summary>
  public float XSpace
  {
   get { return fltXSpace; }
   set { fltXSpace = value; }
  }
  /// <summary>
  /// 图像上下距离边缘距离
  /// </summary>
  public float YSpace
  {
   get { return fltYSpace; }
   set { fltYSpace = value; }
  }
  /// <summary>
  /// 字体大小号数
  /// </summary>
  public int FontSize
  {
   get { return intFontSize; }
   set { intFontSize = value; }
  }
  /// <summary>
  /// 曲线线条大小
  /// </summary>
  public int CurveSize
  {
   get { return intCurveSize; }
   set { intCurveSize = value; }
  }
  #endregion
  /// <summary>
  /// 自动根据参数调整图像大小
  /// </summary>
  public void Fit()
  {
   //计算字体距离
   intFontSpace = FontSize + 5;
   //计算图像边距
   float fltSpace = Math.Min(Width / 6, Height / 6);
   XSpace = fltSpace;
   YSpace = fltSpace;
   //计算X轴刻度宽度
   XSlice = (Width - 2 * XSpace) / (Keys.Length - 1);
   //计算Y轴刻度宽度和Y轴刻度开始值
   float fltMinValue = 0;
   float fltMaxValue = 0;
   for (int i = 0; i < Values.Length; i++)
   {
    if (Values[i] < fltMinValue)
    {
     fltMinValue = Values[i];
    }
    else if (Values[i] > fltMaxValue)
    {
     fltMaxValue = Values[i];
    }
   }
   if (YSliceBegin > fltMinValue)
   {
    YSliceBegin = fltMinValue;
   }
   int intYSliceCount = (int)(fltMaxValue / YSliceValue);
   if (fltMaxValue % YSliceValue != 0)
   {
    intYSliceCount++;
   }
   YSlice = (Height - 2 * YSpace) / intYSliceCount;
  }
  /// <summary>
  /// 生成图像并返回bmp图像对象
  /// </summary>
  /// <returns></returns>
  public Bitmap CreateImage()
  {
   InitializeGraph();
   int intKeysCount = Keys.Length;
   int intValuesCount = Values.Length;
   if (intValuesCount % intKeysCount == 0)
   {
    int intCurvesCount = intValuesCount / intKeysCount;
    for (int i = 0; i < intCurvesCount; i++)
    {
     float[] fltCurrentValues = new float[intKeysCount];
     for (int j = 0; j < intKeysCount; j++)
     {
      fltCurrentValues[j] = Values[i * intKeysCount + j];
     }
     DrawContent(ref objGraphics, fltCurrentValues, clrsCurveColors[i]);
    }
   }
   else
   {
    objGraphics.DrawString("发生错误,Values的长度必须是Keys的整数倍!", new Font("宋体", FontSize + 5), new SolidBrush(TextColor), new Point((int)XSpace, (int)(Height / 2)));
   }
   return objBitmap;
  }
  /// <summary>
  /// 初始化和填充图像区域,画出边框,初始标题
  /// </summary>
  private void InitializeGraph()
  {
   //根据给定的高度和宽度创建一个位图图像
   objBitmap = new Bitmap((int)Width, (int)Height);
   //从指定的 objBitmap 对象创建 objGraphics 对象 (即在objBitmap对象中画图)
   objGraphics = Graphics.FromImage(objBitmap);
   //根据给定颜色(LightGray)填充图像的矩形区域 (背景)
   objGraphics.DrawRectangle(new Pen(BorderColor, 1), 0, 0, Width - 1, Height - 1); //画边框
   objGraphics.FillRectangle(new SolidBrush(BgColor), 1, 1, Width - 2, Height - 2); //填充边框
   //画X轴,注意图像的原始X轴和Y轴计算是以左上角为原点,向右和向下计算的
   float fltX1 = XSpace;
   float fltY1 = Height - YSpace;
   float fltX2 = Width - XSpace + XSlice / 2;
   float fltY2 = fltY1;
   objGraphics.DrawLine(new Pen(new SolidBrush(AxisColor), 1), fltX1, fltY1, fltX2, fltY2);
   //画Y轴
   fltX1 = XSpace;
   fltY1 = Height - YSpace;
   fltX2 = XSpace;
   fltY2 = YSpace - YSlice / 2;
   objGraphics.DrawLine(new Pen(new SolidBrush(AxisColor), 1), fltX1, fltY1, fltX2, fltY2);
   //初始化轴线说明文字
   SetAxisText(ref objGraphics);
   //初始化X轴上的刻度和文字
   SetXAxis(ref objGraphics);
   //初始化Y轴上的刻度和文字
   SetYAxis(ref objGraphics);
   //初始化标题
   CreateTitle(ref objGraphics);
  }
  /// <summary>
  /// 初始化轴线说明文字
  /// </summary>
  /// <param name="objGraphics"></param>
  private void SetAxisText(ref Graphics objGraphics)
  {
   float fltX = Width - XSpace + XSlice / 2 - (XAxisText.Length - 1) * intFontSpace;
   float fltY = Height - YSpace - intFontSpace;
   objGraphics.DrawString(XAxisText, new Font("宋体", FontSize), new SolidBrush(AxisTextColor), fltX, fltY);
   fltX = XSpace + 5;
   fltY = YSpace - YSlice / 2 - intFontSpace;
   for (int i = 0; i < YAxisText.Length; i++)
   {
    objGraphics.DrawString(YAxisText[i].ToString(), new Font("宋体", FontSize), new SolidBrush(AxisTextColor), fltX, fltY);
    fltY += intFontSpace; //字体上下距离
   }
  }
  /// <summary>
  /// 初始化X轴上的刻度和文字
  /// </summary>
  /// <param name="objGraphics"></param>
  private void SetXAxis(ref Graphics objGraphics)
  {
   float fltX1 = XSpace;
   float fltY1 = Height - YSpace;
   float fltX2 = XSpace;
   float fltY2 = Height - YSpace;
   int iCount = 0;
   int iSliceCount = 1;
   float Scale = 0;
   float iWidth = ((Width - 2 * XSpace) / XSlice) * 50; //将要画刻度的长度分段,并乘以50,以10为单位画刻度线。
   float fltSliceHeight = XSlice / 10; //刻度线的高度
   objGraphics.TranslateTransform(fltX1, fltY1); //平移图像(原点)
   objGraphics.RotateTransform(XRotateAngle, MatrixOrder.Prepend); //旋转图像
   objGraphics.DrawString(Keys[0].ToString(), new Font("宋体", FontSize), new SolidBrush(SliceTextColor), 0, 0);
   objGraphics.ResetTransform(); //重置图像
   for (int i = 0; i <= iWidth; i += 10) //以10为单位
   {
    Scale = i * XSlice / 50;//即(i / 10) * (XSlice / 5),将每个刻度分五部分画,但因为i以10为单位,得除以10
    if (iCount == 5)
    {
     objGraphics.DrawLine(new Pen(new SolidBrush(AxisColor)), fltX1 + Scale, fltY1 + fltSliceHeight * 1.5f, fltX2 + Scale, fltY2 - fltSliceHeight * 1.5f);
     //画网格虚线
     Pen penDashed = new Pen(new SolidBrush(AxisColor));
     penDashed.DashStyle = DashStyle.Dash;
     objGraphics.DrawLine(penDashed, fltX1 + Scale, fltY1, fltX2 + Scale, YSpace - YSlice / 2);
     //这里显示X轴刻度
     if (iSliceCount <= Keys.Length - 1)
     {
      objGraphics.TranslateTransform(fltX1 + Scale, fltY1);
      objGraphics.RotateTransform(XRotateAngle, MatrixOrder.Prepend);
      objGraphics.DrawString(Keys[iSliceCount].ToString(), new Font("宋体", FontSize), new SolidBrush(SliceTextColor), 0, 0);
      objGraphics.ResetTransform();
     }
     else
     {
      //超过范围,不画任何刻度文字
     }
     iCount = 0;
     iSliceCount++;
     if (fltX1 + Scale > Width - XSpace)
     {
      break;
     }
    }
    else
    {
     objGraphics.DrawLine(new Pen(new SolidBrush(SliceColor)), fltX1 + Scale, fltY1 + fltSliceHeight, fltX2 + Scale, fltY2 - fltSliceHeight);
    }
    iCount++;
   }
  }
  /// <summary>
  /// 初始化Y轴上的刻度和文字
  /// </summary>
  /// <param name="objGraphics"></param>
  private void SetYAxis(ref Graphics objGraphics)
  {
   float fltX1 = XSpace;
   float fltY1 = Height - YSpace;
   float fltX2 = XSpace;
   float fltY2 = Height - YSpace;
   int iCount = 0;
   float Scale = 0;
   int iSliceCount = 1;
   float iHeight = ((Height - 2 * YSpace) / YSlice) * 50; //将要画刻度的长度分段,并乘以50,以10为单位画刻度线。
   float fltSliceWidth = YSlice / 10; //刻度线的宽度
   string strSliceText = string.Empty;
   objGraphics.TranslateTransform(XSpace - intFontSpace * YSliceBegin.ToString().Length, Height - YSpace); //平移图像(原点)
   objGraphics.RotateTransform(YRotateAngle, MatrixOrder.Prepend); //旋转图像
   objGraphics.DrawString(YSliceBegin.ToString(), new Font("宋体", FontSize), new SolidBrush(SliceTextColor), 0, 0);
   objGraphics.ResetTransform(); //重置图像
   for (int i = 0; i < iHeight; i += 10)
   {
    Scale = i * YSlice / 50; //即(i / 10) * (YSlice / 5),将每个刻度分五部分画,但因为i以10为单位,得除以10
    if (iCount == 5)
    {
     objGraphics.DrawLine(new Pen(new SolidBrush(AxisColor)), fltX1 - fltSliceWidth * 1.5f, fltY1 - Scale, fltX2 + fltSliceWidth * 1.5f, fltY2 - Scale);
     //画网格虚线
     Pen penDashed = new Pen(new SolidBrush(AxisColor));
     penDashed.DashStyle = DashStyle.Dash;
     objGraphics.DrawLine(penDashed, XSpace, fltY1 - Scale, Width - XSpace + XSlice / 2, fltY2 - Scale);
     //这里显示Y轴刻度
     strSliceText = Convert.ToString(YSliceValue * iSliceCount + YSliceBegin);
     objGraphics.TranslateTransform(XSpace - intFontSize * strSliceText.Length, fltY1 - Scale); //平移图像(原点)
     objGraphics.RotateTransform(YRotateAngle, MatrixOrder.Prepend); //旋转图像
     objGraphics.DrawString(strSliceText, new Font("宋体", FontSize), new SolidBrush(SliceTextColor), 0, 0);
     objGraphics.ResetTransform(); //重置图像
     iCount = 0;
     iSliceCount++;
    }
    else
    {
     objGraphics.DrawLine(new Pen(new SolidBrush(SliceColor)), fltX1 - fltSliceWidth, fltY1 - Scale, fltX2 + fltSliceWidth, fltY2 - Scale);
    }
    iCount++;
   }
  }
  /// <summary>
  /// 画曲线
  /// </summary>
  /// <param name="objGraphics"></param>
  private void DrawContent(ref Graphics objGraphics, float[] fltCurrentValues, Color clrCurrentColor)
  {
   Pen CurvePen = new Pen(clrCurrentColor, CurveSize);
   PointF[] CurvePointF = new PointF[Keys.Length];
   float keys = 0;
   float values = 0;
   for (int i = 0; i < Keys.Length; i++)
   {
    keys = XSlice * i + XSpace;
    values = (Height - YSpace) + YSliceBegin - YSlice * (fltCurrentValues[i] / YSliceValue);
    CurvePointF[i] = new PointF(keys, values);
   }
   objGraphics.DrawCurve(CurvePen, CurvePointF, Tension);
  }
  /// <summary>
  /// 初始化标题
  /// </summary>
  /// <param name="objGraphics"></param>
  private void CreateTitle(ref Graphics objGraphics)
  {
   objGraphics.DrawString(Title, new Font("宋体", FontSize), new SolidBrush(TextColor), new Point((int)(Width - XSpace) - intFontSize * Title.Length, (int)(YSpace - YSlice / 2 - intFontSpace)));
  }
 }
}

希望本文所述对大家的C#程序设计有所帮助。

(0)

相关推荐

  • C#绘制椭圆的方法

    本文实例讲述了C#绘制椭圆的方法.分享给大家供大家参考.具体实现方法如下: using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Text; using System.Windows.Forms; namespace WindowsApplication2 { public partial

  • C#利用GDI绘制常见图形和文字

    废话不多说,我们先来认识一下这个GDI+,看看它到底长什么样. GDI+:Graphics Device Interface Plus也就是图形设备接口,提供了各种丰富的图形图像处理功能;在C#.NET中,使用GDI+处理二维(2D)的图形和图像,使用DirectX处理三维(3D)的图形图像,图形图像处理用到的主要命名空间是System . Drawing:提供了对GDI+基本图形功能的访问,主要有Graphics类.Bitmap类.从Brush类继承的类.Font类.Icon类.Image类.

  • C# 绘制统计图大全(柱状图, 折线图, 扇形图)

    统计图形种类繁多, 有柱状图, 折线图, 扇形图等等, 而统计图形的绘制方法也有很多, 有Flash制作的统计图形, 有水晶报表生成统计图形, 有专门制图软件制作, 也有编程语言自己制作的:这里我们用就C# 制作三款最经典的统计图: 柱状图, 折线图和扇形图:既然是统计, 当然需要数据, 这里演示的数据存于Sql Server2000中, 三款统计图形都是动态生成. 其中柱状图我会附上制作步骤, 其他两款统计图直接附源码. 说明: 需求不一样, 统计图形绘制后的显示效果也不一样, 比如这里柱状图

  • C#实现绘制浮雕图片效果实例

    本文采用C#实例讲解了处理图片为浮雕效果的实现方法,这在PS中是一个常见的功能,也是C#中的一个简单的图像处理例子.程序先读取原图,然后依次访问每个像素的RGB值,获取相邻两个像素的R.G.B值,计算与左上角像素的RGB分量之差,将计算后的RGB值回写到位图,最后进行图片的浮雕处理. 主要代码如下: using System; using System.Drawing; using System.Collections; using System.ComponentModel; using Sy

  • C#实现绘制面形图表的方法详解

    本例详细讲述了C#实现的面形图绘制例子,这是其中一个核心绘制文件的代码,代码中的里面的注释很多,也比较详细,相信对于初学者学习及理解C#图形绘制方面的技术要点.难点有所帮助. C#绘制面形图的主要功能代码如下: using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using S

  • C#绘制中国国旗的方法

    本文实例讲述了C#绘制中国国旗的方法.分享给大家供大家参考.具体如下: 程序运行截图: 中国国旗被定义在<GB:12982-2004>中,以下是从维基百科条目中华人民共和国国旗中截的一张图,标出了五颗星大致的位置. 建立一个空的C# Windows窗体应用程序,窗体取名FormMain,在窗体中放一个PictureBox,取名为picFlagOfChina,并将Dock属性设置为Fill.程序代码中用到了窗体事件Load和Resize,程序代码如下: using System; using S

  • C#绘制飞行棋地图小程序

    1. 初始化地图,在绘制时可先将地图进行初始化,用数组来存储关卡的位置,然后利用循环给地图中 关卡所在处赋予代表关卡的值. 关键代码如下 /// <summary> /// 初始化游戏地图 /// </summary> static void InitialMap() { for (int i=0;i<Map.Length;i++) { Map[i] =0; } //用于存储关卡位置 int[] luckyTurn = { 6, 23, 40, 55, 69, 83,98 }

  • C#实现在图像中绘制文字图形的方法

    本文实例讲述了C#实现在图像中绘制文字图形的方法.分享给大家供大家参考.具体实现方法如下: using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Text; using System.Windows.Forms; using System.Drawing.Drawing2D; using S

  • C#绘制曲线图的方法

    本文实例讲述了C#绘制曲线图的方法.分享给大家供大家参考.具体如下: 1. 曲线图效果: 2. C#代码: /// <summary> /// 自动根据参数调整图像大小 /// </summary> public void Fit() { //计算字体距离 intFontSpace = FontSize + 5; //计算图像边距 float fltSpace = Math.Min(Width / 6, Height / 6); XSpace = fltSpace; YSpace

  • django+echart绘制曲线图的方法示例

    声明:请事先到官网下载echarts,另外本文引用了adminlte模板构建前台页面 views: <!-- /.row --> <div class="row"> <div class="col-xs-12"> <!-- interactive chart --> <div class="box box-primary"> <div class="box-header

  • C#绘制实时曲线图的方法详解

    在终端机器上的曲线显示本打算用控件,可控件折腾好长时间也没弄顺,还是自己写的好使,记录下来后面再改进. //绘图部分的定义 Int32 Draw_Top;//绘画Y起点 Int32 Draw_Left;//绘画X起点 Int32 Draw_EdgeWidth;//X边缘宽度 Int32 Draw_EdgeHeight;//Y边缘高度 Int32 Draw_RangeWidth;//绘画范围宽度 Int32 Draw_RangeHeight;//绘画范围高度 Double[] XTDYData =

  • python入门turtle库实现螺旋曲线图的方法示例

    记录turtle库中经常用到的函数. turtle.forward(distance)  画笔向前移动distance距离 turtle.backforward(distance)  画笔向后移动distance距离 turtle.right(degree)  绘制方向向右旋转degree度 turtle.exitonclick()  点击关闭图形窗口 turtle.penup()   抬起画笔,之后移动画笔不绘制形状 turtle.pendown()  落下画笔,之后移动画笔绘制形状 turt

  • python利用matplotlib库绘制饼图的方法示例

    介绍 matplotlib 是python最著名的绘图库,它提供了一整套和matlab相似的命令API,十分适合交互式地进行制图.而且也可以方便地将它作为绘图控件,嵌入GUI应用程序中. 它的文档相当完备,并且 Gallery页面 中有上百幅缩略图,打开之后都有源程序.因此如果你需要绘制某种类型的图,只需要在这个页面中浏览/复制/粘贴一下,基本上都能搞定. matplotlib的安装方法可以点击这里 这篇文章给大家主要介绍了python用matplotlib绘制饼图的方法,话不多说,下面来看代码

  • asp.net实现C#绘制太极图的方法

    本文实例讲述了asp.net实现C#绘制太极图的方法.分享给大家供大家参考.具体如下: 成品图如下所示: html页面: 注意设置: 复制代码 代码如下: ContentType="Image/Jpeg" 复制代码 代码如下: <%@ Page Language="C#" AutoEventWireup="true" CodeFile="TaiJiTu.aspx.cs" Inherits="TaiJiTu&qu

  • javascript+html5实现绘制圆环的方法

    本文实例讲述了javascript+html5实现绘制圆环的方法.分享给大家供大家参考.具体如下: <!DOCTYPE html> <html> <head> <title> </title> <meta http-equiv="Content-Type" content="text/html;charset=UTF-8"> </head> <body> <fiel

  • js+html5通过canvas指定开始和结束点绘制线条的方法

    本文实例讲述了js+html5通过canvas指定开始和结束点绘制线条的方法.分享给大家供大家参考.具体实现方法如下: <!DOCTYPE html> <html> <body> <canvas id="myCanvas" width="200" height="100" style="border:1px solid #c3c3c3;"> Your browser does n

  • php绘制圆形的方法

    本文实例讲述了php绘制圆形的方法.分享给大家供大家参考.具体实现方法如下: php绘图的基本步骤,有四步(php.ini里的 extension = php_gb2.dll 组件首先需要启用) 1.创建画布: 2.画出所需要的图像(圆.直线.矩形.扇形.弧线.......): 3.输出到网页,或者另存: 4.销毁图片(目的是释放图像所占用的内存). 网站开发最常用的三种图像格式:gif.jpg/jpeg.png (1)gif格式:压缩率最高,但只能显示256色,可能造成色彩的丢失.优势:可能显

  • php使用Jpgraph绘制柱形图的方法

    本文实例讲述了php使用Jpgraph绘制柱形图的方法.分享给大家供大家参考.具体实现方法如下: <?php include ("src/jpgraph.php"); include ("src/jpgraph_bar.php"); $data = array(19,23,34,38,45,67,71,78,85,87,90,96); //定义数组 $graph = new Graph(400,300); //创建新的Graph对象 $graph->Se

随机推荐