C绘制各种图形代码.docxVIP

  • 4
  • 0
  • 约1.96万字
  • 约 38页
  • 2022-06-07 发布于浙江
  • 举报
PAGE PAGE 10 / 38 using System; using System.Collections.Generic; 03.using System.Linq; 04.using System.Text; 05.// 06.using System.Drawing; 07.// 08.namespace DatePrint 09.{ /// summary ///根据统计数据,输出各种统计图形,包括饼状图、曲线分析图、柱形图、多组数据曲线分析图; 12.///统计图形统一大小:600*420; ///开发人员: ###; ///开发时间: ###; /// /summary 16.public class CountImage 17.{ #region //颜色,画框, /// summary 20.///生成随机颜色21./// /summary /// returns/returns private static Color GetRandomColor(int seed) 24.{ 25.Random random = new Random(seed); 26.int r = 0; 27.int g = 0; 28.int b = 0; 29.r = random.Next(0, 230); 30.g = random.Next(0, 230); 31.b

文档评论(0)

1亿VIP精品文档

相关文档