在好例子网,分享、交流、成长!
您当前所在位置:首页Others 开发实例一般编程问题 → C#二维三维图形绘制工程实例宝典光盘.rar

C#二维三维图形绘制工程实例宝典光盘.rar

一般编程问题

下载此实例
  • 开发语言:Others
  • 实例大小:17.94M
  • 下载次数:20
  • 浏览次数:241
  • 发布时间:2021-11-23
  • 实例类别:一般编程问题
  • 发 布 人:js2021
  • 文件格式:.rar
  • 所需积分:2
 

实例介绍

【实例简介】
第一部分 c#的基本数据类型、数组类型和图形基础 第1章 c#语言基础 2 1.1 数据类型 2 1.1.1 简单类型 2 1.1.2 结构类型 5 1.1.3 枚举类型 6 1.1.4 数组类型 7 1.1.5 类类型 10 1.1.6 类型转换 11 1.2 类 14 1.3 接口 29 1.4 委托与事件 31 第2章 图形基础 34 2.1 笔和画刷 34 2.1.1 pen 类 34 2.1.2 brush 类 35 2.2 基本图形形状 37 2.2.1 点 37 2.2.2 直线和曲线 37 2.2.3 矩形、椭圆形和圆弧形 40 2.2.4 多边形 42 2.3 颜色 44 2.4 双倍缓存 66 第3章 坐标系统和颜色变换 69 3.1 坐标系统 69 3.2 颜色变换 77 第二部分 二维图形的基本算法 第4章 二维矩阵和变换 82 4.1 矩阵基础和变换 82 4.2 齐次坐标 82 4.2.1 齐次坐标中的缩放 83 4.2.2 齐次坐标中的平移 83 4.2.3 齐次坐标中的旋转 84 4.2.4 变换组合 85 4.2.5 c#中矩阵的定义 86 4.2.6 c#中的矩阵操作 87 4.2.7 c#中基本的矩阵变换 89 4.3 c#中图形对象的变换 93 基本变换 93 4.4 c#中的多对象变换 101 4.5 文字变换 105 第5章 二维线形图形 109 5.1 序列化和反序列化及二维图形的基本框架 109 5.1.1 c#序列化和反序列化 110 5.1.2 二维图形的基本框架 113 5.2 二维图形 248 5.2.1 简单实例 248 5.2.2 图例 278 5.2.3 符号 289 5.2.4 对数比例 302 5.2.5 图形的修饰 308 5.3 阶梯状图 316 5.4 多y轴图 318 第6章 特殊二维图形 327 6.1 创建柱状图 327 6.1.1 水平柱状图 327 6.1.2 垂直柱状图 343 6.1.3 图形充填柱状图 344 6.1.4 重叠柱状图 346 6.2 饼状图 348 6.3 误差图 361 6.4 股票图 367 6.4.1 最高最低收盘价股票图 368 6.4.2 最高最低开盘收盘价股票图 369 6.4.3 最高最低价股票图 377 6.4.4 k 线图(阴阳烛图) 380 6.5 面积图 389 6.6 综合图 390 第三部分 三维图形的相关知识及三维图形的实现 第7章 三维矩阵和变换 396 7.1 三维数学概念 396 7.1.1 操作三维对象 396 7.1.2 数学结构 397 7.2 三维中的基本矩阵和变换 402 7.2.1 c#中三维点和矩阵的操作 403 7.2.2 三维的基本变换 405 7.3 方位角和仰角 434 7.4 三维图形中的特殊坐标系统 439 7.4.1 球坐标系统 440 7.4.2 圆柱坐标系统 443 7.5 特殊坐标中的实际应用 447 7.5.1 球坐标示例 447 7.5.2 双缓存 463 第8章 三维图形 473 8.1 三维图形基础 473 8.1.1 point3和matrix3类 473 8.1.2 chartstyle类 476 8.1.3 坐标轴 496 8.1.4 网格线 496 8.1.5 标签 497 8.2 三维折线图 503 8.3 三维图形函数包 508 8.3.1 chartstyle2d类 509 8.3.2 point4类 515 8.3.3 dataseries类 516 8.3.4 chartfunctions类 521 8.3.5 drawchart类 526 8.4 曲面图的实现 541 8.4.1 网格图 541 8.4.2 幕布网格图 548 8.4.3 瀑布网格图 551 8.4.4 曲面图 553 8.5 x-y平面色彩图 559 8.6 轮廓图 564 8.6.1 轮廓图的算法 564 8.6.2 轮廓图的实现 564 8.7 组合图 569 8.7.1 三维体系中的x-y色彩图 570 8.7.2 三维体系中的轮廓图 571 8.7.3 网格-轮廓组合图 575 8.7.4 曲面-轮廓组合图 576 8.7.5 填充曲面-轮廓组合图 576 8.8 三维柱状图 577 实现柱状图 577 8.9 切片图 591 切片图的实现 591 第四部分 c#中应用微软office的excel实现各种二维及
【实例截图】
【核心代码】
16359647974593360968.rar
└── C# 3D
├── autorun.exe
├── autorun.inf
├── chapter2-3-4
│   ├── Chapter2
│   │   ├── Example2_1_1
│   │   │   ├── Example2_1_1
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │   ├── Example2_1_1.exe
│   │   │   │   │   ├── Example2_1_1.pdb
│   │   │   │   │   └── Example2_1_1.vshost.exe
│   │   │   │   ├── Example2_1_1.csproj
│   │   │   │   ├── Form1.cs
│   │   │   │   ├── Form1.Designer.cs
│   │   │   │   ├── obj
│   │   │   │   │   ├── Debug
│   │   │   │   │   │   ├── Example2_1_1.csproj.GenerateResource.Cache
│   │   │   │   │   │   ├── Example2_1_1.exe
│   │   │   │   │   │   ├── Example2_1_1.pdb
│   │   │   │   │   │   ├── Example2_1_1.Properties.Resources.resources
│   │   │   │   │   │   └── TempPE
│   │   │   │   │   └── Example2_1_1.csproj.FileListAbsolute.txt
│   │   │   │   ├── Program.cs
│   │   │   │   └── Properties
│   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   ├── Resources.Designer.cs
│   │   │   │   ├── Resources.resx
│   │   │   │   ├── Settings.Designer.cs
│   │   │   │   └── Settings.settings
│   │   │   ├── Example2_1_1.sln
│   │   │   └── Example2_1_1.suo
│   │   ├── Example2_1_2
│   │   │   ├── Example2_1_2
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │   ├── Example2_1_2.exe
│   │   │   │   │   ├── Example2_1_2.pdb
│   │   │   │   │   └── Example2_1_2.vshost.exe
│   │   │   │   ├── Example2_1_2.csproj
│   │   │   │   ├── Form1.cs
│   │   │   │   ├── Form1.Designer.cs
│   │   │   │   ├── Form1.resx
│   │   │   │   ├── obj
│   │   │   │   │   ├── Debug
│   │   │   │   │   │   ├── Example2_1_2.csproj.GenerateResource.Cache
│   │   │   │   │   │   ├── Example2_1_2.exe
│   │   │   │   │   │   ├── Example2_1_2.Form1.resources
│   │   │   │   │   │   ├── Example2_1_2.pdb
│   │   │   │   │   │   ├── Example2_1_2.Properties.Resources.resources
│   │   │   │   │   │   └── TempPE
│   │   │   │   │   └── Example2_1_2.csproj.FileListAbsolute.txt
│   │   │   │   ├── Program.cs
│   │   │   │   └── Properties
│   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   ├── Resources.Designer.cs
│   │   │   │   ├── Resources.resx
│   │   │   │   ├── Settings.Designer.cs
│   │   │   │   └── Settings.settings
│   │   │   ├── Example2_1_2.sln
│   │   │   └── Example2_1_2.suo
│   │   ├── Example2_2_1
│   │   │   ├── Example2_2_1
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │   ├── Example2_2_1.exe
│   │   │   │   │   ├── Example2_2_1.pdb
│   │   │   │   │   └── Example2_2_1.vshost.exe
│   │   │   │   ├── Example2_2_1.csproj
│   │   │   │   ├── Form1.cs
│   │   │   │   ├── Form1.Designer.cs
│   │   │   │   ├── Form1.resx
│   │   │   │   ├── obj
│   │   │   │   │   ├── Debug
│   │   │   │   │   │   ├── Example2_2_1.csproj.GenerateResource.Cache
│   │   │   │   │   │   ├── Example2_2_1.exe
│   │   │   │   │   │   ├── Example2_2_1.Form1.resources
│   │   │   │   │   │   ├── Example2_2_1.pdb
│   │   │   │   │   │   ├── Example2_2_1.Properties.Resources.resources
│   │   │   │   │   │   └── TempPE
│   │   │   │   │   └── Example2_2_1.csproj.FileListAbsolute.txt
│   │   │   │   ├── Program.cs
│   │   │   │   └── Properties
│   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   ├── Resources.Designer.cs
│   │   │   │   ├── Resources.resx
│   │   │   │   ├── Settings.Designer.cs
│   │   │   │   └── Settings.settings
│   │   │   ├── Example2_2_1.sln
│   │   │   └── Example2_2_1.suo
│   │   ├── Example2_2_2
│   │   │   ├── Example2_2_2
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │   ├── Example2_2_2.exe
│   │   │   │   │   ├── Example2_2_2.pdb
│   │   │   │   │   └── Example2_2_2.vshost.exe
│   │   │   │   ├── Example2_2_2.csproj
│   │   │   │   ├── Form1.cs
│   │   │   │   ├── Form1.Designer.cs
│   │   │   │   ├── Form1.resx
│   │   │   │   ├── obj
│   │   │   │   │   ├── Debug
│   │   │   │   │   │   ├── Example2_2_2.csproj.GenerateResource.Cache
│   │   │   │   │   │   ├── Example2_2_2.exe
│   │   │   │   │   │   ├── Example2_2_2.Form1.resources
│   │   │   │   │   │   ├── Example2_2_2.pdb
│   │   │   │   │   │   ├── Example2_2_2.Properties.Resources.resources
│   │   │   │   │   │   └── TempPE
│   │   │   │   │   └── Example2_2_2.csproj.FileListAbsolute.txt
│   │   │   │   ├── Program.cs
│   │   │   │   └── Properties
│   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   ├── Resources.Designer.cs
│   │   │   │   ├── Resources.resx
│   │   │   │   ├── Settings.Designer.cs
│   │   │   │   └── Settings.settings
│   │   │   ├── Example2_2_2.sln
│   │   │   └── Example2_2_2.suo
│   │   ├── Example2_2_3
│   │   │   ├── Example2_2_3
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │   ├── Example2_2_3.exe
│   │   │   │   │   ├── Example2_2_3.pdb
│   │   │   │   │   └── Example2_2_3.vshost.exe
│   │   │   │   ├── Example2_2_3.csproj
│   │   │   │   ├── Form1.cs
│   │   │   │   ├── Form1.designer.cs
│   │   │   │   ├── obj
│   │   │   │   │   ├── Debug
│   │   │   │   │   │   ├── Example2_2_3.csproj.GenerateResource.Cache
│   │   │   │   │   │   ├── Example2_2_3.exe
│   │   │   │   │   │   ├── Example2_2_3.pdb
│   │   │   │   │   │   ├── Example2_2_3.Properties.Resources.resources
│   │   │   │   │   │   └── TempPE
│   │   │   │   │   └── Example2_2_3.csproj.FileListAbsolute.txt
│   │   │   │   ├── Program.cs
│   │   │   │   └── Properties
│   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   ├── Resources.Designer.cs
│   │   │   │   ├── Resources.resx
│   │   │   │   ├── Settings.Designer.cs
│   │   │   │   └── Settings.settings
│   │   │   ├── Example2_2_3.sln
│   │   │   └── Example2_2_3.suo
│   │   ├── Example2_3_1
│   │   │   ├── Example2_3_1
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │   ├── Example2_3_1.exe
│   │   │   │   │   ├── Example2_3_1.pdb
│   │   │   │   │   └── Example2_3_1.vshost.exe
│   │   │   │   ├── Example2_3_1.csproj
│   │   │   │   ├── Form1.cs
│   │   │   │   ├── Form1.Designer.cs
│   │   │   │   ├── Form1.resx
│   │   │   │   ├── obj
│   │   │   │   │   ├── Debug
│   │   │   │   │   │   ├── Example2_3_1.csproj.GenerateResource.Cache
│   │   │   │   │   │   ├── Example2_3_1.exe
│   │   │   │   │   │   ├── Example2_3_1.Form1.resources
│   │   │   │   │   │   ├── Example2_3_1.pdb
│   │   │   │   │   │   ├── Example2_3_1.Properties.Resources.resources
│   │   │   │   │   │   ├── Refactor
│   │   │   │   │   │   └── TempPE
│   │   │   │   │   └── Example2_3_1.csproj.FileListAbsolute.txt
│   │   │   │   ├── Program.cs
│   │   │   │   └── Properties
│   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   ├── Resources.Designer.cs
│   │   │   │   ├── Resources.resx
│   │   │   │   ├── Settings.Designer.cs
│   │   │   │   └── Settings.settings
│   │   │   ├── Example2_3_1.sln
│   │   │   └── Example2_3_1.suo
│   │   ├── Example2_3_2
│   │   │   ├── Example2_3_2
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │   ├── Example2_3_2.exe
│   │   │   │   │   ├── Example2_3_2.pdb
│   │   │   │   │   └── Example2_3_2.vshost.exe
│   │   │   │   ├── ColorMap.cs
│   │   │   │   ├── Example2_3_2.csproj
│   │   │   │   ├── Form1.cs
│   │   │   │   ├── Form1.designer.cs
│   │   │   │   ├── obj
│   │   │   │   │   ├── Debug
│   │   │   │   │   │   ├── Example2_3_2.csproj.GenerateResource.Cache
│   │   │   │   │   │   ├── Example2_3_2.exe
│   │   │   │   │   │   ├── Example2_3_2.pdb
│   │   │   │   │   │   ├── Example2_3_2.Properties.Resources.resources
│   │   │   │   │   │   └── TempPE
│   │   │   │   │   └── Example2_3_2.csproj.FileListAbsolute.txt
│   │   │   │   ├── Program.cs
│   │   │   │   └── Properties
│   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   ├── Resources.Designer.cs
│   │   │   │   ├── Resources.resx
│   │   │   │   ├── Settings.Designer.cs
│   │   │   │   └── Settings.settings
│   │   │   ├── Example2_3_2.sln
│   │   │   └── Example2_3_2.suo
│   │   ├── Example2_3_3
│   │   │   ├── Example2_3_3
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │   ├── Example2_3_3.exe
│   │   │   │   │   ├── Example2_3_3.pdb
│   │   │   │   │   └── Example2_3_3.vshost.exe
│   │   │   │   ├── ColorMap.cs
│   │   │   │   ├── Example2_3_3.csproj
│   │   │   │   ├── Form1.cs
│   │   │   │   ├── Form1.designer.cs
│   │   │   │   ├── obj
│   │   │   │   │   ├── Debug
│   │   │   │   │   │   ├── Example2_3_3.csproj.GenerateResource.Cache
│   │   │   │   │   │   ├── Example2_3_3.exe
│   │   │   │   │   │   ├── Example2_3_3.pdb
│   │   │   │   │   │   ├── Example2_3_3.Properties.Resources.resources
│   │   │   │   │   │   └── TempPE
│   │   │   │   │   └── Example2_3_3.csproj.FileListAbsolute.txt
│   │   │   │   ├── PointC.cs
│   │   │   │   ├── Program.cs
│   │   │   │   └── Properties
│   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   ├── Resources.Designer.cs
│   │   │   │   ├── Resources.resx
│   │   │   │   ├── Settings.Designer.cs
│   │   │   │   └── Settings.settings
│   │   │   ├── Example2_3_3.sln
│   │   │   └── Example2_3_3.suo
│   │   ├── Example2_3_4
│   │   │   ├── Example2_3_4
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │   ├── Example2_3_4.exe
│   │   │   │   │   ├── Example2_3_4.pdb
│   │   │   │   │   └── Example2_3_4.vshost.exe
│   │   │   │   ├── ColorMap.cs
│   │   │   │   ├── Example2_3_4.csproj
│   │   │   │   ├── Mapfrm.cs
│   │   │   │   ├── Mapfrm.designer.cs
│   │   │   │   ├── Mapfrm.resx
│   │   │   │   ├── obj
│   │   │   │   │   ├── Debug
│   │   │   │   │   │   ├── Example2_3_4.csproj.GenerateResource.Cache
│   │   │   │   │   │   ├── Example2_3_4.exe
│   │   │   │   │   │   ├── Example2_3_4.Mapfrm.resources
│   │   │   │   │   │   ├── Example2_3_4.pdb
│   │   │   │   │   │   ├── Example2_3_4.Properties.Resources.resources
│   │   │   │   │   │   └── TempPE
│   │   │   │   │   └── Example2_3_4.csproj.FileListAbsolute.txt
│   │   │   │   ├── PointC.cs
│   │   │   │   ├── Program.cs
│   │   │   │   └── Properties
│   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   ├── Resources.Designer.cs
│   │   │   │   ├── Resources.resx
│   │   │   │   ├── Settings.Designer.cs
│   │   │   │   └── Settings.settings
│   │   │   ├── Example2_3_4.sln
│   │   │   └── Example2_3_4.suo
│   │   ├── Example2_4_1
│   │   │   ├── Example2_4_1
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │   ├── Example2_4_1.exe
│   │   │   │   │   ├── Example2_4_1.pdb
│   │   │   │   │   └── Example2_4_1.vshost.exe
│   │   │   │   ├── Example2_4_1.csproj
│   │   │   │   ├── Form1.cs
│   │   │   │   ├── Form1.Designer.cs
│   │   │   │   ├── Form1.resx
│   │   │   │   ├── obj
│   │   │   │   │   ├── Debug
│   │   │   │   │   │   ├── Example2_4_1.csproj.GenerateResource.Cache
│   │   │   │   │   │   ├── Example2_4_1.exe
│   │   │   │   │   │   ├── Example2_4_1.Form1.resources
│   │   │   │   │   │   ├── Example2_4_1.pdb
│   │   │   │   │   │   ├── Example2_4_1.Properties.Resources.resources
│   │   │   │   │   │   └── TempPE
│   │   │   │   │   └── Example2_4_1.csproj.FileListAbsolute.txt
│   │   │   │   ├── Program.cs
│   │   │   │   └── Properties
│   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   ├── Resources.Designer.cs
│   │   │   │   ├── Resources.resx
│   │   │   │   ├── Settings.Designer.cs
│   │   │   │   └── Settings.settings
│   │   │   ├── Example2_4_1.sln
│   │   │   └── Example2_4_1.suo
│   │   └── Example2_4_2
│   │   ├── Example2_4_2
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   │   ├── Example2_4_2.exe
│   │   │   │   ├── Example2_4_2.pdb
│   │   │   │   └── Example2_4_2.vshost.exe
│   │   │   ├── Example2_4_2.csproj
│   │   │   ├── Form1.cs
│   │   │   ├── Form1.Designer.cs
│   │   │   ├── Form1.resx
│   │   │   ├── obj
│   │   │   │   ├── Debug
│   │   │   │   │   ├── Example2_4_2.csproj.GenerateResource.Cache
│   │   │   │   │   ├── Example2_4_2.exe
│   │   │   │   │   ├── Example2_4_2.Form1.resources
│   │   │   │   │   ├── Example2_4_2.pdb
│   │   │   │   │   ├── Example2_4_2.Properties.Resources.resources
│   │   │   │   │   └── TempPE
│   │   │   │   └── Example2_4_2.csproj.FileListAbsolute.txt
│   │   │   ├── Program.cs
│   │   │   └── Properties
│   │   │   ├── AssemblyInfo.cs
│   │   │   ├── Resources.Designer.cs
│   │   │   ├── Resources.resx
│   │   │   ├── Settings.Designer.cs
│   │   │   └── Settings.settings
│   │   ├── Example2_4_2.sln
│   │   └── Example2_4_2.suo
│   ├── Chapter3
│   │   ├── Example3_1_1
│   │   │   ├── Example3_1_1
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │   ├── Example3_1_1.exe
│   │   │   │   │   ├── Example3_1_1.pdb
│   │   │   │   │   └── Example3_1_1.vshost.exe
│   │   │   │   ├── Example3_1_1.csproj
│   │   │   │   ├── Form1.cs
│   │   │   │   ├── Form1.Designer.cs
│   │   │   │   ├── Form1.resx
│   │   │   │   ├── obj
│   │   │   │   │   ├── Debug
│   │   │   │   │   │   ├── Example3_1_1.csproj.GenerateResource.Cache
│   │   │   │   │   │   ├── Example3_1_1.exe
│   │   │   │   │   │   ├── Example3_1_1.Form1.resources
│   │   │   │   │   │   ├── Example3_1_1.pdb
│   │   │   │   │   │   ├── Example3_1_1.Properties.Resources.resources
│   │   │   │   │   │   └── TempPE
│   │   │   │   │   └── Example3_1_1.csproj.FileListAbsolute.txt
│   │   │   │   ├── Program.cs
│   │   │   │   └── Properties
│   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   ├── Resources.Designer.cs
│   │   │   │   ├── Resources.resx
│   │   │   │   ├── Settings.Designer.cs
│   │   │   │   └── Settings.settings
│   │   │   ├── Example3_1_1.sln
│   │   │   └── Example3_1_1.suo
│   │   ├── Example3_1_2
│   │   │   ├── Example3_1_2
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │   ├── Example3_1_2.exe
│   │   │   │   │   ├── Example3_1_2.pdb
│   │   │   │   │   └── Example3_1_2.vshost.exe
│   │   │   │   ├── Example3_1_2.csproj
│   │   │   │   ├── Form1.cs
│   │   │   │   ├── Form1.Designer.cs
│   │   │   │   ├── Form1.resx
│   │   │   │   ├── obj
│   │   │   │   │   ├── Debug
│   │   │   │   │   │   ├── Example3_1_2.csproj.GenerateResource.Cache
│   │   │   │   │   │   ├── Example3_1_2.exe
│   │   │   │   │   │   ├── Example3_1_2.Form1.resources
│   │   │   │   │   │   ├── Example3_1_2.pdb
│   │   │   │   │   │   ├── Example3_1_2.Properties.Resources.resources
│   │   │   │   │   │   └── TempPE
│   │   │   │   │   └── Example3_1_2.csproj.FileListAbsolute.txt
│   │   │   │   ├── Program.cs
│   │   │   │   └── Properties
│   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   ├── Resources.Designer.cs
│   │   │   │   ├── Resources.resx
│   │   │   │   ├── Settings.Designer.cs
│   │   │   │   └── Settings.settings
│   │   │   ├── Example3_1_2.sln
│   │   │   └── Example3_1_2.suo
│   │   └── Example3_2_1
│   │   ├── Example3_2_1
│   │   │   ├── bin
│   │   │   │   ├── Debug
│   │   │   │   │   ├── ASTROBOY.bmp
│   │   │   │   │   ├── colorinput.bmp
│   │   │   │   │   ├── Example3_2_1.exe
│   │   │   │   │   ├── Example3_2_1.pdb
│   │   │   │   │   └── Example3_2_1.vshost.exe
│   │   │   │   └── Release
│   │   │   │   ├── ASTROBOY.bmp
│   │   │   │   ├── colorinput.bmp
│   │   │   │   ├── Example3_2_1.exe
│   │   │   │   ├── Example3_2_1.pdb
│   │   │   │   └── Example3_2_1.vshost.exe
│   │   │   ├── Example3_2_1.csproj
│   │   │   ├── Form1.cs
│   │   │   ├── Form1.Designer.cs
│   │   │   ├── Form1.resx
│   │   │   ├── obj
│   │   │   │   ├── Debug
│   │   │   │   │   ├── Example3_2_1.csproj.GenerateResource.Cache
│   │   │   │   │   ├── Example3_2_1.exe
│   │   │   │   │   ├── Example3_2_1.Form1.resources
│   │   │   │   │   ├── Example3_2_1.pdb
│   │   │   │   │   ├── Example3_2_1.Properties.Resources.resources
│   │   │   │   │   └── TempPE
│   │   │   │   ├── Example3_2_1.csproj.FileListAbsolute.txt
│   │   │   │   └── Release
│   │   │   │   ├── Example3_2_1.csproj.GenerateResource.Cache
│   │   │   │   ├── Example3_2_1.exe
│   │   │   │   ├── Example3_2_1.Form1.resources
│   │   │   │   ├── Example3_2_1.pdb
│   │   │   │   ├── Example3_2_1.Properties.Resources.resources
│   │   │   │   └── TempPE
│   │   │   ├── Program.cs
│   │   │   └── Properties
│   │   │   ├── AssemblyInfo.cs
│   │   │   ├── Resources.Designer.cs
│   │   │   ├── Resources.resx
│   │   │   ├── Settings.Designer.cs
│   │   │   └── Settings.settings
│   │   ├── Example3_2_1.sln
│   │   └── Example3_2_1.suo
│   └── Chapter4
│   ├── Example4_2_1
│   │   ├── Example4_2_1
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   │   ├── Example4_2_1.exe
│   │   │   │   ├── Example4_2_1.pdb
│   │   │   │   └── Example4_2_1.vshost.exe
│   │   │   ├── Example4_2_1.csproj
│   │   │   ├── Form1.cs
│   │   │   ├── Form1.designer.cs
│   │   │   ├── obj
│   │   │   │   ├── Debug
│   │   │   │   │   ├── Example4_2_1.csproj.GenerateResource.Cache
│   │   │   │   │   ├── Example4_2_1.exe
│   │   │   │   │   ├── Example4_2_1.pdb
│   │   │   │   │   ├── Example4_2_1.Properties.Resources.resources
│   │   │   │   │   └── TempPE
│   │   │   │   └── Example4_2_1.csproj.FileListAbsolute.txt
│   │   │   ├── Program.cs
│   │   │   └── Properties
│   │   │   ├── AssemblyInfo.cs
│   │   │   ├── Resources.Designer.cs
│   │   │   ├── Resources.resx
│   │   │   ├── Settings.Designer.cs
│   │   │   └── Settings.settings
│   │   ├── Example4_2_1.sln
│   │   └── Example4_2_1.suo
│   ├── Example4_2_2
│   │   ├── Example4_2_2
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   │   ├── Example4_2_2.exe
│   │   │   │   ├── Example4_2_2.pdb
│   │   │   │   └── Example4_2_2.vshost.exe
│   │   │   ├── Example4_2_2.csproj
│   │   │   ├── Form1.cs
│   │   │   ├── Form1.Designer.cs
│   │   │   ├── Form1.resx
│   │   │   ├── obj
│   │   │   │   ├── Debug
│   │   │   │   │   ├── Example4_2_2.csproj.GenerateResource.Cache
│   │   │   │   │   ├── Example4_2_2.exe
│   │   │   │   │   ├── Example4_2_2.Form1.resources
│   │   │   │   │   ├── Example4_2_2.pdb
│   │   │   │   │   ├── Example4_2_2.Properties.Resources.resources
│   │   │   │   │   └── TempPE
│   │   │   │   └── Example4_2_2.csproj.FileListAbsolute.txt
│   │   │   ├── Program.cs
│   │   │   └── Properties
│   │   │   ├── AssemblyInfo.cs
│   │   │   ├── Resources.Designer.cs
│   │   │   ├── Resources.resx
│   │   │   ├── Settings.Designer.cs
│   │   │   └── Settings.settings
│   │   ├── Example4_2_2.sln
│   │   └── Example4_2_2.suo
│   ├── Example4_3_1
│   │   ├── Example4_3_1
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   │   ├── Example4_3_1.exe
│   │   │   │   ├── Example4_3_1.pdb
│   │   │   │   └── Example4_3_1.vshost.exe
│   │   │   ├── Example4_3_1.csproj
│   │   │   ├── Form1.cs
│   │   │   ├── Form1.Designer.cs
│   │   │   ├── Form1.resx
│   │   │   ├── obj
│   │   │   │   ├── Debug
│   │   │   │   │   ├── Example4_3_1.csproj.GenerateResource.Cache
│   │   │   │   │   ├── Example4_3_1.exe
│   │   │   │   │   ├── Example4_3_1.Form1.resources
│   │   │   │   │   ├── Example4_3_1.pdb
│   │   │   │   │   ├── Example4_3_1.Properties.Resources.resources
│   │   │   │   │   └── TempPE
│   │   │   │   └── Example4_3_1.csproj.FileListAbsolute.txt
│   │   │   ├── Program.cs
│   │   │   └── Properties
│   │   │   ├── AssemblyInfo.cs
│   │   │   ├── Resources.Designer.cs
│   │   │   ├── Resources.resx
│   │   │   ├── Settings.Designer.cs
│   │   │   └── Settings.settings
│   │   ├── Example4_3_1.sln
│   │   └── Example4_3_1.suo
│   ├── Example4_4_1
│   │   ├── Example4_4_1
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   │   ├── Example4_4_1.exe
│   │   │   │   ├── Example4_4_1.pdb
│   │   │   │   └── Example4_4_1.vshost.exe
│   │   │   ├── Example4_4_1.csproj
│   │   │   ├── Form1.cs
│   │   │   ├── Form1.Designer.cs
│   │   │   ├── Form1.resx
│   │   │   ├── obj
│   │   │   │   ├── Debug
│   │   │   │   │   ├── Example4_4_1.csproj.GenerateResource.Cache
│   │   │   │   │   ├── Example4_4_1.exe
│   │   │   │   │   ├── Example4_4_1.Form1.resources
│   │   │   │   │   ├── Example4_4_1.pdb
│   │   │   │   │   ├── Example4_4_1.Properties.Resources.resources
│   │   │   │   │   ├── Refactor
│   │   │   │   │   └── TempPE
│   │   │   │   └── Example4_4_1.csproj.FileListAbsolute.txt
│   │   │   ├── Program.cs
│   │   │   └── Properties
│   │   │   ├── AssemblyInfo.cs
│   │   │   ├── Resources.Designer.cs
│   │   │   ├── Resources.resx
│   │   │   ├── Settings.Designer.cs
│   │   │   └── Settings.settings
│   │   ├── Example4_4_1.sln
│   │   └── Example4_4_1.suo
│   └── Example4_5_1
│   ├── Example4_5_1
│   │   ├── bin
│   │   │   └── Debug
│   │   │   ├── Example4_5_1.exe
│   │   │   ├── Example4_5_1.pdb
│   │   │   └── Example4_5_1.vshost.exe
│   │   ├── Example4_5_1.csproj
│   │   ├── Form1.cs
│   │   ├── Form1.Designer.cs
│   │   ├── Form1.resx
│   │   ├── obj
│   │   │   ├── Debug
│   │   │   │   ├── Example4_5_1.csproj.GenerateResource.Cache
│   │   │   │   ├── Example4_5_1.exe
│   │   │   │   ├── Example4_5_1.Form1.resources
│   │   │   │   ├── Example4_5_1.pdb
│   │   │   │   ├── Example4_5_1.Properties.Resources.resources
│   │   │   │   ├── Refactor
│   │   │   │   └── TempPE
│   │   │   └── Example4_5_1.csproj.FileListAbsolute.txt
│   │   ├── Program.cs
│   │   └── Properties
│   │   ├── AssemblyInfo.cs
│   │   ├── Resources.Designer.cs
│   │   ├── Resources.resx
│   │   ├── Settings.Designer.cs
│   │   └── Settings.settings
│   ├── Example4_5_1.sln
│   └── Example4_5_1.suo
├── Chapter5
│   ├── Example5_1_1
│   │   ├── Example5_1_1
│   │   │   ├── Axis.cs
│   │   │   ├── AxisLabel.cs
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   │   ├── Example5_1_1.exe
│   │   │   │   ├── Example5_1_1.pdb
│   │   │   │   └── Example5_1_1.vshost.exe
│   │   │   ├── Border.cs
│   │   │   ├── Chart.cs
│   │   │   ├── CurveItem.cs
│   │   │   ├── CurveList.cs
│   │   │   ├── Example5_1_1.csproj
│   │   │   ├── FontSpec.cs
│   │   │   ├── Form1.cs
│   │   │   ├── Form1.designer.cs
│   │   │   ├── Form1.resx
│   │   │   ├── GapLabel.cs
│   │   │   ├── GraphPane.cs
│   │   │   ├── Label.cs
│   │   │   ├── LinearScale.cs
│   │   │   ├── LineBase.cs
│   │   │   ├── MajorGrid.cs
│   │   │   ├── MajorTic.cs
│   │   │   ├── Margin.cs
│   │   │   ├── MasterPane.cs
│   │   │   ├── MinorGrid.cs
│   │   │   ├── MinorTic.cs
│   │   │   ├── obj
│   │   │   │   ├── Debug
│   │   │   │   │   ├── Example5_1_1.csproj.GenerateResource.Cache
│   │   │   │   │   ├── Example5_1_1.exe
│   │   │   │   │   ├── Example5_1_1.Form1.resources
│   │   │   │   │   ├── Example5_1_1.pdb
│   │   │   │   │   ├── Example5_1_1.Properties.Resources.resources
│   │   │   │   │   └── TempPE
│   │   │   │   └── Example5_1_1.csproj.FileListAbsolute.txt
│   │   │   ├── PaneBase.cs
│   │   │   ├── PaneList.cs
│   │   │   ├── Program.cs
│   │   │   ├── Properties
│   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   ├── Resources.Designer.cs
│   │   │   │   ├── Resources.resx
│   │   │   │   ├── Settings.Designer.cs
│   │   │   │   └── Settings.settings
│   │   │   ├── Scale.cs
│   │   │   ├── Types.cs
│   │   │   ├── XAxis.cs
│   │   │   ├── YAxis.cs
│   │   │   └── YAxisList.cs
│   │   ├── Example5_1_1.sln
│   │   └── Example5_1_1.suo
│   ├── Example5_2_1
│   │   ├── Example5_2_1
│   │   │   ├── Axis.cs
│   │   │   ├── AxisLabel.cs
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   │   ├── Example5_2_1.exe
│   │   │   │   ├── Example5_2_1.pdb
│   │   │   │   └── Example5_2_1.vshost.exe
│   │   │   ├── Border.cs
│   │   │   ├── Chart.cs
│   │   │   ├── CurveItem.cs
│   │   │   ├── CurveList.cs
│   │   │   ├── Example5_2_1.csproj
│   │   │   ├── FontSpec.cs
│   │   │   ├── Form1.cs
│   │   │   ├── Form1.designer.cs
│   │   │   ├── Form1.resx
│   │   │   ├── GapLabel.cs
│   │   │   ├── GraphPane.cs
│   │   │   ├── IPointList.cs
│   │   │   ├── IPointListEdit.cs
│   │   │   ├── Label.cs
│   │   │   ├── LinearScale.cs
│   │   │   ├── LineBase.cs
│   │   │   ├── Line.cs
│   │   │   ├── LineItem.cs
│   │   │   ├── MajorGrid.cs
│   │   │   ├── MajorTic.cs
│   │   │   ├── Margin.cs
│   │   │   ├── MasterPane.cs
│   │   │   ├── MinorGrid.cs
│   │   │   ├── MinorTic.cs
│   │   │   ├── obj
│   │   │   │   ├── Debug
│   │   │   │   │   ├── Example5_2_1.csproj.GenerateResource.Cache
│   │   │   │   │   ├── Example5_2_1.exe
│   │   │   │   │   ├── Example5_2_1.Form1.resources
│   │   │   │   │   ├── Example5_2_1.pdb
│   │   │   │   │   ├── Example5_2_1.Properties.Resources.resources
│   │   │   │   │   └── TempPE
│   │   │   │   └── Example5_2_1.csproj.FileListAbsolute.txt
│   │   │   ├── PaneBase.cs
│   │   │   ├── PaneList.cs
│   │   │   ├── PointPairBase.cs
│   │   │   ├── PointPair.cs
│   │   │   ├── PointPairList.cs
│   │   │   ├── Program.cs
│   │   │   ├── Properties
│   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   ├── Resources.Designer.cs
│   │   │   │   ├── Resources.resx
│   │   │   │   ├── Settings.Designer.cs
│   │   │   │   └── Settings.settings
│   │   │   ├── Scale.cs
│   │   │   ├── Types.cs
│   │   │   ├── ValueHandler.cs
│   │   │   ├── XAxis.cs
│   │   │   ├── YAxis.cs
│   │   │   └── YAxisList.cs
│   │   ├── Example5_2_1.sln
│   │   └── Example5_2_1.suo
│   ├── Example5_2_2
│   │   ├── Example5_2_2
│   │   │   ├── Axis.cs
│   │   │   ├── AxisLabel.cs
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   │   ├── Example5_2_2.exe
│   │   │   │   ├── Example5_2_2.pdb
│   │   │   │   └── Example5_2_2.vshost.exe
│   │   │   ├── Border.cs
│   │   │   ├── Chart.cs
│   │   │   ├── CurveItem.cs
│   │   │   ├── CurveList.cs
│   │   │   ├── Example5_2_2.csproj
│   │   │   ├── FontSpec.cs
│   │   │   ├── Form1.cs
│   │   │   ├── Form1.designer.cs
│   │   │   ├── Form1.resx
│   │   │   ├── GapLabel.cs
│   │   │   ├── GraphPane.cs
│   │   │   ├── IPointList.cs
│   │   │   ├── IPointListEdit.cs
│   │   │   ├── Label.cs
│   │   │   ├── Legend.cs
│   │   │   ├── LinearScale.cs
│   │   │   ├── LineBase.cs
│   │   │   ├── Line.cs
│   │   │   ├── LineItem.cs
│   │   │   ├── Location.cs
│   │   │   ├── MajorGrid.cs
│   │   │   ├── MajorTic.cs
│   │   │   ├── Margin.cs
│   │   │   ├── MasterPane.cs
│   │   │   ├── MinorGrid.cs
│   │   │   ├── MinorTic.cs
│   │   │   ├── obj
│   │   │   │   ├── Debug
│   │   │   │   │   ├── Example5_2_2.csproj.GenerateResource.Cache
│   │   │   │   │   ├── Example5_2_2.exe
│   │   │   │   │   ├── Example5_2_2.Form1.resources
│   │   │   │   │   ├── Example5_2_2.pdb
│   │   │   │   │   ├── Example5_2_2.Properties.Resources.resources
│   │   │   │   │   └── TempPE
│   │   │   │   └── Example5_2_2.csproj.FileListAbsolute.txt
│   │   │   ├── PaneBase.cs
│   │   │   ├── PaneList.cs
│   │   │   ├── PointPairBase.cs
│   │   │   ├── PointPair.cs
│   │   │   ├── PointPairList.cs
│   │   │   ├── Program.cs
│   │   │   ├── Properties
│   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   ├── Resources.Designer.cs
│   │   │   │   ├── Resources.resx
│   │   │   │   ├── Settings.Designer.cs
│   │   │   │   └── Settings.settings
│   │   │   ├── Scale.cs
│   │   │   ├── Types.cs
│   │   │   ├── ValueHandler.cs
│   │   │   ├── XAxis.cs
│   │   │   ├── YAxis.cs
│   │   │   └── YAxisList.cs
│   │   ├── Example5_2_2.sln
│   │   └── Example5_2_2.suo
│   ├── Example5_2_3
│   │   ├── Example5_2_3
│   │   │   ├── Axis.cs
│   │   │   ├── AxisLabel.cs
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   │   ├── Example5_2_3.exe
│   │   │   │   ├── Example5_2_3.pdb
│   │   │   │   └── Example5_2_3.vshost.exe
│   │   │   ├── Border.cs
│   │   │   ├── Chart.cs
│   │   │   ├── CurveItem.cs
│   │   │   ├── CurveList.cs
│   │   │   ├── Example5_2_3.csproj
│   │   │   ├── Fill.cs
│   │   │   ├── FontSpec.cs
│   │   │   ├── Form1.cs
│   │   │   ├── Form1.designer.cs
│   │   │   ├── Form1.resx
│   │   │   ├── GapLabel.cs
│   │   │   ├── GraphPane.cs
│   │   │   ├── IPointList.cs
│   │   │   ├── IPointListEdit.cs
│   │   │   ├── Label.cs
│   │   │   ├── Legend.cs
│   │   │   ├── LinearScale.cs
│   │   │   ├── LineBase.cs
│   │   │   ├── Line.cs
│   │   │   ├── LineItem.cs
│   │   │   ├── Location.cs
│   │   │   ├── MajorGrid.cs
│   │   │   ├── MajorTic.cs
│   │   │   ├── Margin.cs
│   │   │   ├── MasterPane.cs
│   │   │   ├── MinorGrid.cs
│   │   │   ├── MinorTic.cs
│   │   │   ├── obj
│   │   │   │   ├── Debug
│   │   │   │   │   ├── Example5_2_3.csproj.GenerateResource.Cache
│   │   │   │   │   ├── Example5_2_3.exe
│   │   │   │   │   ├── Example5_2_3.Form1.resources
│   │   │   │   │   ├── Example5_2_3.pdb
│   │   │   │   │   ├── Example5_2_3.Properties.Resources.resources
│   │   │   │   │   └── TempPE
│   │   │   │   └── Example5_2_3.csproj.FileListAbsolute.txt
│   │   │   ├── PaneBase.cs
│   │   │   ├── PaneList.cs
│   │   │   ├── PointPairBase.cs
│   │   │   ├── PointPair.cs
│   │   │   ├── PointPairList.cs
│   │   │   ├── Program.cs
│   │   │   ├── Properties
│   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   ├── Resources.Designer.cs
│   │   │   │   ├── Resources.resx
│   │   │   │   ├── Settings.Designer.cs
│   │   │   │   └── Settings.settings
│   │   │   ├── Scale.cs
│   │   │   ├── Symbol.cs
│   │   │   ├── Types.cs
│   │   │   ├── ValueHandler.cs
│   │   │   ├── XAxis.cs
│   │   │   ├── YAxis.cs
│   │   │   └── YAxisList.cs
│   │   ├── Example5_2_3.sln
│   │   └── Example5_2_3.suo
│   ├── Example5_2_4
│   │   ├── Example5_2_4
│   │   │   ├── Axis.cs
│   │   │   ├── AxisLabel.cs
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   │   ├── Example5_2_4.exe
│   │   │   │   ├── Example5_2_4.pdb
│   │   │   │   └── Example5_2_4.vshost.exe
│   │   │   ├── Border.cs
│   │   │   ├── Chart.cs
│   │   │   ├── CurveItem.cs
│   │   │   ├── CurveList.cs
│   │   │   ├── Example5_2_4.csproj
│   │   │   ├── Fill.cs
│   │   │   ├── FontSpec.cs
│   │   │   ├── Form1.cs
│   │   │   ├── Form1.designer.cs
│   │   │   ├── Form1.resx
│   │   │   ├── GapLabel.cs
│   │   │   ├── GraphPane.cs
│   │   │   ├── IPointList.cs
│   │   │   ├── IPointListEdit.cs
│   │   │   ├── Label.cs
│   │   │   ├── Legend.cs
│   │   │   ├── LinearScale.cs
│   │   │   ├── LineBase.cs
│   │   │   ├── Line.cs
│   │   │   ├── LineItem.cs
│   │   │   ├── Location.cs
│   │   │   ├── LogScale.cs
│   │   │   ├── MajorGrid.cs
│   │   │   ├── MajorTic.cs
│   │   │   ├── Margin.cs
│   │   │   ├── MasterPane.cs
│   │   │   ├── MinorGrid.cs
│   │   │   ├── MinorTic.cs
│   │   │   ├── obj
│   │   │   │   ├── Debug
│   │   │   │   │   ├── Example5_2_4.csproj.GenerateResource.Cache
│   │   │   │   │   ├── Example5_2_4.exe
│   │   │   │   │   ├── Example5_2_4.Form1.resources
│   │   │   │   │   ├── Example5_2_4.pdb
│   │   │   │   │   ├── Example5_2_4.Properties.Resources.resources
│   │   │   │   │   └── TempPE
│   │   │   │   └── Example5_2_4.csproj.FileListAbsolute.txt
│   │   │   ├── PaneBase.cs
│   │   │   ├── PaneList.cs
│   │   │   ├── PointPairBase.cs
│   │   │   ├── PointPair.cs
│   │   │   ├── PointPairList.cs
│   │   │   ├── Program.cs
│   │   │   ├── Properties
│   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   ├── Resources.Designer.cs
│   │   │   │   ├── Resources.resx
│   │   │   │   ├── Settings.Designer.cs
│   │   │   │   └── Settings.settings
│   │   │   ├── Scale.cs
│   │   │   ├── Symbol.cs
│   │   │   ├── Types.cs
│   │   │   ├── ValueHandler.cs
│   │   │   ├── XAxis.cs
│   │   │   ├── YAxis.cs
│   │   │   └── YAxisList.cs
│   │   ├── Example5_2_4.sln
│   │   └── Example5_2_4.suo
│   ├── Example5_2_5
│   │   ├── Example5_2_5
│   │   │   ├── ArrowObj.cs
│   │   │   ├── Axis.cs
│   │   │   ├── AxisLabel.cs
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   │   ├── Example5_2_5.exe
│   │   │   │   ├── Example5_2_5.pdb
│   │   │   │   └── Example5_2_5.vshost.exe
│   │   │   ├── Border.cs
│   │   │   ├── BoxObj.cs
│   │   │   ├── Chart.cs
│   │   │   ├── CurveItem.cs
│   │   │   ├── CurveList.cs
│   │   │   ├── Example5_2_5.csproj
│   │   │   ├── Fill.cs
│   │   │   ├── FontSpec.cs
│   │   │   ├── Form1.cs
│   │   │   ├── Form1.designer.cs
│   │   │   ├── Form1.resx
│   │   │   ├── GapLabel.cs
│   │   │   ├── GraphObj.cs
│   │   │   ├── GraphObjList.cs
│   │   │   ├── GraphPane.cs
│   │   │   ├── IPointList.cs
│   │   │   ├── IPointListEdit.cs
│   │   │   ├── Label.cs
│   │   │   ├── Legend.cs
│   │   │   ├── LinearScale.cs
│   │   │   ├── LineBase.cs
│   │   │   ├── Line.cs
│   │   │   ├── LineItem.cs
│   │   │   ├── LineObj.cs
│   │   │   ├── Location.cs
│   │   │   ├── LogScale.cs
│   │   │   ├── MajorGrid.cs
│   │   │   ├── MajorTic.cs
│   │   │   ├── Margin.cs
│   │   │   ├── MasterPane.cs
│   │   │   ├── MinorGrid.cs
│   │   │   ├── MinorTic.cs
│   │   │   ├── obj
│   │   │   │   ├── Debug
│   │   │   │   │   ├── Example5_2_5.csproj.GenerateResource.Cache
│   │   │   │   │   ├── Example5_2_5.exe
│   │   │   │   │   ├── Example5_2_5.Form1.resources
│   │   │   │   │   ├── Example5_2_5.pdb
│   │   │   │   │   ├── Example5_2_5.Properties.Resources.resources
│   │   │   │   │   └── TempPE
│   │   │   │   │   └── Properties.Resources.Designer.cs.dll
│   │   │   │   └── Example5_2_5.csproj.FileListAbsolute.txt
│   │   │   ├── PaneBase.cs
│   │   │   ├── PaneList.cs
│   │   │   ├── PointPairBase.cs
│   │   │   ├── PointPair.cs
│   │   │   ├── PointPairList.cs
│   │   │   ├── Program.cs
│   │   │   ├── Properties
│   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   ├── Resources.Designer.cs
│   │   │   │   ├── Resources.resx
│   │   │   │   ├── Settings.Designer.cs
│   │   │   │   └── Settings.settings
│   │   │   ├── Scale.cs
│   │   │   ├── Symbol.cs
│   │   │   ├── TextObj.cs
│   │   │   ├── TextScale.cs
│   │   │   ├── Types.cs
│   │   │   ├── ValueHandler.cs
│   │   │   ├── XAxis.cs
│   │   │   ├── YAxis.cs
│   │   │   └── YAxisList.cs
│   │   ├── Example5_2_5.sln
│   │   └── Example5_2_5.suo
│   ├── Example5_3_1
│   │   ├── Example5_3_1
│   │   │   ├── ArrowObj.cs
│   │   │   ├── Axis.cs
│   │   │   ├── AxisLabel.cs
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   │   ├── Example5_3_1.exe
│   │   │   │   ├── Example5_3_1.pdb
│   │   │   │   └── Example5_3_1.vshost.exe
│   │   │   ├── Border.cs
│   │   │   ├── BoxObj.cs
│   │   │   ├── Chart.cs
│   │   │   ├── CurveItem.cs
│   │   │   ├── CurveList.cs
│   │   │   ├── Example5_3_1.csproj
│   │   │   ├── Fill.cs
│   │   │   ├── FontSpec.cs
│   │   │   ├── Form1.cs
│   │   │   ├── Form1.designer.cs
│   │   │   ├── Form1.resx
│   │   │   ├── GapLabel.cs
│   │   │   ├── GraphObj.cs
│   │   │   ├── GraphObjList.cs
│   │   │   ├── GraphPane.cs
│   │   │   ├── IPointList.cs
│   │   │   ├── IPointListEdit.cs
│   │   │   ├── Label.cs
│   │   │   ├── Legend.cs
│   │   │   ├── LinearScale.cs
│   │   │   ├── LineBase.cs
│   │   │   ├── Line.cs
│   │   │   ├── LineItem.cs
│   │   │   ├── LineObj.cs
│   │   │   ├── Location.cs
│   │   │   ├── LogScale.cs
│   │   │   ├── MajorGrid.cs
│   │   │   ├── MajorTic.cs
│   │   │   ├── Margin.cs
│   │   │   ├── MasterPane.cs
│   │   │   ├── MinorGrid.cs
│   │   │   ├── MinorTic.cs
│   │   │   ├── obj
│   │   │   │   ├── Debug
│   │   │   │   │   ├── Example5_3_1.csproj.GenerateResource.Cache
│   │   │   │   │   ├── Example5_3_1.exe
│   │   │   │   │   ├── Example5_3_1.Form1.resources
│   │   │   │   │   ├── Example5_3_1.pdb
│   │   │   │   │   ├── Example5_3_1.Properties.Resources.resources
│   │   │   │   │   └── TempPE
│   │   │   │   └── Example5_3_1.csproj.FileListAbsolute.txt
│   │   │   ├── PaneBase.cs
│   │   │   ├── PaneList.cs
│   │   │   ├── PointPairBase.cs
│   │   │   ├── PointPair.cs
│   │   │   ├── PointPairList.cs
│   │   │   ├── Program.cs
│   │   │   ├── Properties
│   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   ├── Resources.Designer.cs
│   │   │   │   ├── Resources.resx
│   │   │   │   ├── Settings.Designer.cs
│   │   │   │   └── Settings.settings
│   │   │   ├── Scale.cs
│   │   │   ├── Symbol.cs
│   │   │   ├── TextObj.cs
│   │   │   ├── TextScale.cs
│   │   │   ├── Types.cs
│   │   │   ├── ValueHandler.cs
│   │   │   ├── XAxis.cs
│   │   │   ├── YAxis.cs
│   │   │   └── YAxisList.cs
│   │   ├── Example5_3_1.sln
│   │   └── Example5_3_1.suo
│   └── Example5_4_1
│   ├── Example5_4_1
│   │   ├── ArrowObj.cs
│   │   ├── Axis.cs
│   │   ├── AxisLabel.cs
│   │   ├── bin
│   │   │   └── Debug
│   │   │   ├── Example5_4_1.exe
│   │   │   ├── Example5_4_1.pdb
│   │   │   └── Example5_4_1.vshost.exe
│   │   ├── Border.cs
│   │   ├── BoxObj.cs
│   │   ├── Chart.cs
│   │   ├── CurveItem.cs
│   │   ├── CurveList.cs
│   │   ├── Example5_4_1.csproj
│   │   ├── Fill.cs
│   │   ├── FontSpec.cs
│   │   ├── Form1.cs
│   │   ├── Form1.designer.cs
│   │   ├── Form1.resx
│   │   ├── GapLabel.cs
│   │   ├── GraphObj.cs
│   │   ├── GraphObjList.cs
│   │   ├── GraphPane.cs
│   │   ├── IPointList.cs
│   │   ├── IPointListEdit.cs
│   │   ├── Label.cs
│   │   ├── Legend.cs
│   │   ├── LinearScale.cs
│   │   ├── LineBase.cs
│   │   ├── Line.cs
│   │   ├── LineItem.cs
│   │   ├── LineObj.cs
│   │   ├── Location.cs
│   │   ├── LogScale.cs
│   │   ├── MajorGrid.cs
│   │   ├── MajorTic.cs
│   │   ├── Margin.cs
│   │   ├── MasterPane.cs
│   │   ├── MinorGrid.cs
│   │   ├── MinorTic.cs
│   │   ├── obj
│   │   │   ├── Debug
│   │   │   │   ├── Example5_4_1.csproj.GenerateResource.Cache
│   │   │   │   ├── Example5_4_1.exe
│   │   │   │   ├── Example5_4_1.Form1.resources
│   │   │   │   ├── Example5_4_1.pdb
│   │   │   │   ├── Example5_4_1.Properties.Resources.resources
│   │   │   │   └── TempPE
│   │   │   └── Example5_4_1.csproj.FileListAbsolute.txt
│   │   ├── PaneBase.cs
│   │   ├── PaneList.cs
│   │   ├── PointPairBase.cs
│   │   ├── PointPair.cs
│   │   ├── PointPairList.cs
│   │   ├── Program.cs
│   │   ├── Properties
│   │   │   ├── AssemblyInfo.cs
│   │   │   ├── Resources.Designer.cs
│   │   │   ├── Resources.resx
│   │   │   ├── Settings.Designer.cs
│   │   │   └── Settings.settings
│   │   ├── Scale.cs
│   │   ├── Symbol.cs
│   │   ├── TextObj.cs
│   │   ├── TextScale.cs
│   │   ├── Types.cs
│   │   ├── ValueHandler.cs
│   │   ├── X2Axis.cs
│   │   ├── XAxis.cs
│   │   ├── Y2Axis.cs
│   │   ├── Y2AxisList.cs
│   │   ├── YAxis.cs
│   │   └── YAxisList.cs
│   ├── Example5_4_1.sln
│   └── Example5_4_1.suo
├── Chapter6
│   ├── Example6_1_1
│   │   ├── Example6_1_1
│   │   │   ├── ArrowObj.cs
│   │   │   ├── Axis.cs
│   │   │   ├── AxisLabel.cs
│   │   │   ├── Bar.cs
│   │   │   ├── BarItem.cs
│   │   │   ├── BarSettings.cs
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   │   ├── Example6_1_1.exe
│   │   │   │   ├── Example6_1_1.pdb
│   │   │   │   └── Example6_1_1.vshost.exe
│   │   │   ├── Border.cs
│   │   │   ├── BoxObj.cs
│   │   │   ├── Chart.cs
│   │   │   ├── CurveItem.cs
│   │   │   ├── CurveList.cs
│   │   │   ├── Example6_1_1.csproj
│   │   │   ├── Fill.cs
│   │   │   ├── FontSpec.cs
│   │   │   ├── Form1.cs
│   │   │   ├── Form1.designer.cs
│   │   │   ├── Form1.resx
│   │   │   ├── GapLabel.cs
│   │   │   ├── GraphObj.cs
│   │   │   ├── GraphObjList.cs
│   │   │   ├── GraphPane.cs
│   │   │   ├── IPointList.cs
│   │   │   ├── IPointListEdit.cs
│   │   │   ├── Label.cs
│   │   │   ├── Legend.cs
│   │   │   ├── LinearScale.cs
│   │   │   ├── LineBase.cs
│   │   │   ├── Line.cs
│   │   │   ├── LineItem.cs
│   │   │   ├── LineObj.cs
│   │   │   ├── Location.cs
│   │   │   ├── LogScale.cs
│   │   │   ├── MajorGrid.cs
│   │   │   ├── MajorTic.cs
│   │   │   ├── Margin.cs
│   │   │   ├── MasterPane.cs
│   │   │   ├── MinorGrid.cs
│   │   │   ├── MinorTic.cs
│   │   │   ├── obj
│   │   │   │   ├── Debug
│   │   │   │   │   ├── Example6_1_1.csproj.GenerateResource.Cache
│   │   │   │   │   ├── Example6_1_1.exe
│   │   │   │   │   ├── Example6_1_1.Form1.resources
│   │   │   │   │   ├── Example6_1_1.pdb
│   │   │   │   │   ├── Example6_1_1.Properties.Resources.resources
│   │   │   │   │   └── TempPE
│   │   │   │   └── Example6_1_1.csproj.FileListAbsolute.txt
│   │   │   ├── PaneBase.cs
│   │   │   ├── PaneList.cs
│   │   │   ├── PointPairBase.cs
│   │   │   ├── PointPair.cs
│   │   │   ├── PointPairList.cs
│   │   │   ├── Program.cs
│   │   │   ├── Properties
│   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   ├── Resources.Designer.cs
│   │   │   │   ├── Resources.resx
│   │   │   │   ├── Settings.Designer.cs
│   │   │   │   └── Settings.settings
│   │   │   ├── Scale.cs
│   │   │   ├── StickItem.cs
│   │   │   ├── Symbol.cs
│   │   │   ├── TextObj.cs
│   │   │   ├── TextScale.cs
│   │   │   ├── Types.cs
│   │   │   ├── ValueHandler.cs
│   │   │   ├── X2Axis.cs
│   │   │   ├── XAxis.cs
│   │   │   ├── Y2Axis.cs
│   │   │   ├── Y2AxisList.cs
│   │   │   ├── YAxis.cs
│   │   │   └── YAxisList.cs
│   │   ├── Example6_1_1.sln
│   │   └── Example6_1_1.suo
│   ├── Example6_1_2
│   │   ├── Example6_1_2
│   │   │   ├── ArrowObj.cs
│   │   │   ├── Axis.cs
│   │   │   ├── AxisLabel.cs
│   │   │   ├── Bar.cs
│   │   │   ├── BarItem.cs
│   │   │   ├── BarSettings.cs
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   │   ├── Example6_1_2.exe
│   │   │   │   ├── Example6_1_2.pdb
│   │   │   │   └── Example6_1_2.vshost.exe
│   │   │   ├── Border.cs
│   │   │   ├── BoxObj.cs
│   │   │   ├── Chart.cs
│   │   │   ├── CurveItem.cs
│   │   │   ├── CurveList.cs
│   │   │   ├── Example6_1_2.csproj
│   │   │   ├── Fill.cs
│   │   │   ├── FontSpec.cs
│   │   │   ├── Form1.cs
│   │   │   ├── Form1.designer.cs
│   │   │   ├── Form1.resx
│   │   │   ├── GapLabel.cs
│   │   │   ├── GraphObj.cs
│   │   │   ├── GraphObjList.cs
│   │   │   ├── GraphPane.cs
│   │   │   ├── IPointList.cs
│   │   │   ├── IPointListEdit.cs
│   │   │   ├── Label.cs
│   │   │   ├── Legend.cs
│   │   │   ├── LinearScale.cs
│   │   │   ├── LineBase.cs
│   │   │   ├── Line.cs
│   │   │   ├── LineItem.cs
│   │   │   ├── LineObj.cs
│   │   │   ├── Location.cs
│   │   │   ├── LogScale.cs
│   │   │   ├── MajorGrid.cs
│   │   │   ├── MajorTic.cs
│   │   │   ├── Margin.cs
│   │   │   ├── MasterPane.cs
│   │   │   ├── MinorGrid.cs
│   │   │   ├── MinorTic.cs
│   │   │   ├── obj
│   │   │   │   ├── Debug
│   │   │   │   │   ├── Example6_1_2.csproj.GenerateResource.Cache
│   │   │   │   │   ├── Example6_1_2.exe
│   │   │   │   │   ├── Example6_1_2.Form1.resources
│   │   │   │   │   ├── Example6_1_2.pdb
│   │   │   │   │   ├── Example6_1_2.Properties.Resources.resources
│   │   │   │   │   └── TempPE
│   │   │   │   └── Example6_1_2.csproj.FileListAbsolute.txt
│   │   │   ├── PaneBase.cs
│   │   │   ├── PaneList.cs
│   │   │   ├── PointPairBase.cs
│   │   │   ├── PointPair.cs
│   │   │   ├── PointPairList.cs
│   │   │   ├── Program.cs
│   │   │   ├── Properties
│   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   ├── Resources.Designer.cs
│   │   │   │   ├── Resources.resx
│   │   │   │   ├── Settings.Designer.cs
│   │   │   │   └── Settings.settings
│   │   │   ├── Scale.cs
│   │   │   ├── StickItem.cs
│   │   │   ├── Symbol.cs
│   │   │   ├── TextObj.cs
│   │   │   ├── TextScale.cs
│   │   │   ├── Types.cs
│   │   │   ├── ValueHandler.cs
│   │   │   ├── X2Axis.cs
│   │   │   ├── XAxis.cs
│   │   │   ├── Y2Axis.cs
│   │   │   ├── Y2AxisList.cs
│   │   │   ├── YAxis.cs
│   │   │   └── YAxisList.cs
│   │   ├── Example6_1_2.sln
│   │   └── Example6_1_2.suo
│   ├── Example6_1_3
│   │   ├── Example6_1_3
│   │   │   ├── ArrowObj.cs
│   │   │   ├── Axis.cs
│   │   │   ├── AxisLabel.cs
│   │   │   ├── Bar.cs
│   │   │   ├── BarItem.cs
│   │   │   ├── BarSettings.cs
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   │   ├── Example6_1_3.exe
│   │   │   │   ├── Example6_1_3.pdb
│   │   │   │   ├── Example6_1_3.vshost.exe
│   │   │   │   └── images
│   │   │   │   ├── Leaves.jpg
│   │   │   │   └── Tree.jpg
│   │   │   ├── Border.cs
│   │   │   ├── BoxObj.cs
│   │   │   ├── Chart.cs
│   │   │   ├── CurveItem.cs
│   │   │   ├── CurveList.cs
│   │   │   ├── Example6_1_3.csproj
│   │   │   ├── Fill.cs
│   │   │   ├── FontSpec.cs
│   │   │   ├── Form1.cs
│   │   │   ├── Form1.designer.cs
│   │   │   ├── Form1.resx
│   │   │   ├── GapLabel.cs
│   │   │   ├── GraphObj.cs
│   │   │   ├── GraphObjList.cs
│   │   │   ├── GraphPane.cs
│   │   │   ├── IPointList.cs
│   │   │   ├── IPointListEdit.cs
│   │   │   ├── Label.cs
│   │   │   ├── Legend.cs
│   │   │   ├── LinearScale.cs
│   │   │   ├── LineBase.cs
│   │   │   ├── Line.cs
│   │   │   ├── LineItem.cs
│   │   │   ├── LineObj.cs
│   │   │   ├── Location.cs
│   │   │   ├── LogScale.cs
│   │   │   ├── MajorGrid.cs
│   │   │   ├── MajorTic.cs
│   │   │   ├── Margin.cs
│   │   │   ├── MasterPane.cs
│   │   │   ├── MinorGrid.cs
│   │   │   ├── MinorTic.cs
│   │   │   ├── obj
│   │   │   │   ├── Debug
│   │   │   │   │   ├── Example6_1_3.csproj.GenerateResource.Cache
│   │   │   │   │   ├── Example6_1_3.exe
│   │   │   │   │   ├── Example6_1_3.Form1.resources
│   │   │   │   │   ├── Example6_1_3.pdb
│   │   │   │   │   ├── Example6_1_3.Properties.Resources.resources
│   │   │   │   │   └── TempPE
│   │   │   │   └── Example6_1_3.csproj.FileListAbsolute.txt
│   │   │   ├── PaneBase.cs
│   │   │   ├── PaneList.cs
│   │   │   ├── PointPairBase.cs
│   │   │   ├── PointPair.cs
│   │   │   ├── PointPairList.cs
│   │   │   ├── Program.cs
│   │   │   ├── Properties
│   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   ├── Resources.Designer.cs
│   │   │   │   ├── Resources.resx
│   │   │   │   ├── Settings.Designer.cs
│   │   │   │   └── Settings.settings
│   │   │   ├── Scale.cs
│   │   │   ├── StickItem.cs
│   │   │   ├── Symbol.cs
│   │   │   ├── TextObj.cs
│   │   │   ├── TextScale.cs
│   │   │   ├── Types.cs
│   │   │   ├── ValueHandler.cs
│   │   │   ├── X2Axis.cs
│   │   │   ├── XAxis.cs
│   │   │   ├── Y2Axis.cs
│   │   │   ├── Y2AxisList.cs
│   │   │   ├── YAxis.cs
│   │   │   └── YAxisList.cs
│   │   ├── Example6_1_3.sln
│   │   └── Example6_1_3.suo
│   ├── Example6_1_4
│   │   ├── Example6_1_4
│   │   │   ├── ArrowObj.cs
│   │   │   ├── Axis.cs
│   │   │   ├── AxisLabel.cs
│   │   │   ├── Bar.cs
│   │   │   ├── BarItem.cs
│   │   │   ├── BarSettings.cs
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   │   ├── Example6_1_4.exe
│   │   │   │   ├── Example6_1_4.pdb
│   │   │   │   └── Example6_1_4.vshost.exe
│   │   │   ├── Border.cs
│   │   │   ├── BoxObj.cs
│   │   │   ├── Chart.cs
│   │   │   ├── CurveItem.cs
│   │   │   ├── CurveList.cs
│   │   │   ├── Example6_1_4.csproj
│   │   │   ├── Fill.cs
│   │   │   ├── FontSpec.cs
│   │   │   ├── Form1.cs
│   │   │   ├── Form1.designer.cs
│   │   │   ├── Form1.resx
│   │   │   ├── GapLabel.cs
│   │   │   ├── GraphObj.cs
│   │   │   ├── GraphObjList.cs
│   │   │   ├── GraphPane.cs
│   │   │   ├── IPointList.cs
│   │   │   ├── IPointListEdit.cs
│   │   │   ├── Label.cs
│   │   │   ├── Legend.cs
│   │   │   ├── LinearScale.cs
│   │   │   ├── LineBase.cs
│   │   │   ├── Line.cs
│   │   │   ├── LineItem.cs
│   │   │   ├── LineObj.cs
│   │   │   ├── Location.cs
│   │   │   ├── LogScale.cs
│   │   │   ├── MajorGrid.cs
│   │   │   ├── MajorTic.cs
│   │   │   ├── Margin.cs
│   │   │   ├── MasterPane.cs
│   │   │   ├── MinorGrid.cs
│   │   │   ├── MinorTic.cs
│   │   │   ├── obj
│   │   │   │   ├── Debug
│   │   │   │   │   ├── Example6_1_4.csproj.GenerateResource.Cache
│   │   │   │   │   ├── Example6_1_4.exe
│   │   │   │   │   ├── Example6_1_4.Form1.resources
│   │   │   │   │   ├── Example6_1_4.pdb
│   │   │   │   │   ├── Example6_1_4.Properties.Resources.resources
│   │   │   │   │   └── TempPE
│   │   │   │   └── Example6_1_4.csproj.FileListAbsolute.txt
│   │   │   ├── PaneBase.cs
│   │   │   ├── PaneList.cs
│   │   │   ├── PointPairBase.cs
│   │   │   ├── PointPair.cs
│   │   │   ├── PointPairList.cs
│   │   │   ├── Program.cs
│   │   │   ├── Properties
│   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   ├── Resources.Designer.cs
│   │   │   │   ├── Resources.resx
│   │   │   │   ├── Settings.Designer.cs
│   │   │   │   └── Settings.settings
│   │   │   ├── Scale.cs
│   │   │   ├── StickItem.cs
│   │   │   ├── Symbol.cs
│   │   │   ├── TextObj.cs
│   │   │   ├── TextScale.cs
│   │   │   ├── Types.cs
│   │   │   ├── ValueHandler.cs
│   │   │   ├── X2Axis.cs
│   │   │   ├── XAxis.cs
│   │   │   ├── Y2Axis.cs
│   │   │   ├── Y2AxisList.cs
│   │   │   ├── YAxis.cs
│   │   │   └── YAxisList.cs
│   │   ├── Example6_1_4.sln
│   │   └── Example6_1_4.suo
│   ├── Example6_2_1
│   │   ├── Example6_2_1
│   │   │   ├── ArrowObj.cs
│   │   │   ├── Axis.cs
│   │   │   ├── AxisLabel.cs
│   │   │   ├── Bar.cs
│   │   │   ├── BarItem.cs
│   │   │   ├── BarSettings.cs
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   │   ├── Example6_2_1.exe
│   │   │   │   ├── Example6_2_1.pdb
│   │   │   │   └── Example6_2_1.vshost.exe
│   │   │   ├── Border.cs
│   │   │   ├── BoxObj.cs
│   │   │   ├── Chart.cs
│   │   │   ├── ColorSymbolRotator.cs
│   │   │   ├── CurveItem.cs
│   │   │   ├── CurveList.cs
│   │   │   ├── Example6_2_1.csproj
│   │   │   ├── Fill.cs
│   │   │   ├── FontSpec.cs
│   │   │   ├── Form1.cs
│   │   │   ├── Form1.designer.cs
│   │   │   ├── Form1.resx
│   │   │   ├── GapLabel.cs
│   │   │   ├── GraphObj.cs
│   │   │   ├── GraphObjList.cs
│   │   │   ├── GraphPane.cs
│   │   │   ├── IPointList.cs
│   │   │   ├── IPointListEdit.cs
│   │   │   ├── Label.cs
│   │   │   ├── Legend.cs
│   │   │   ├── LinearScale.cs
│   │   │   ├── LineBase.cs
│   │   │   ├── Line.cs
│   │   │   ├── LineItem.cs
│   │   │   ├── LineObj.cs
│   │   │   ├── Location.cs
│   │   │   ├── LogScale.cs
│   │   │   ├── MajorGrid.cs
│   │   │   ├── MajorTic.cs
│   │   │   ├── Margin.cs
│   │   │   ├── MasterPane.cs
│   │   │   ├── MinorGrid.cs
│   │   │   ├── MinorTic.cs
│   │   │   ├── obj
│   │   │   │   ├── Debug
│   │   │   │   │   ├── Example6_2_1.csproj.GenerateResource.Cache
│   │   │   │   │   ├── Example6_2_1.exe
│   │   │   │   │   ├── Example6_2_1.Form1.resources
│   │   │   │   │   ├── Example6_2_1.pdb
│   │   │   │   │   ├── Example6_2_1.Properties.Resources.resources
│   │   │   │   │   └── TempPE
│   │   │   │   └── Example6_2_1.csproj.FileListAbsolute.txt
│   │   │   ├── PaneBase.cs
│   │   │   ├── PaneList.cs
│   │   │   ├── PieItem.cs
│   │   │   ├── PointPairBase.cs
│   │   │   ├── PointPair.cs
│   │   │   ├── PointPairList.cs
│   │   │   ├── Program.cs
│   │   │   ├── Properties
│   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   ├── Resources.Designer.cs
│   │   │   │   ├── Resources.resx
│   │   │   │   ├── Settings.Designer.cs
│   │   │   │   └── Settings.settings
│   │   │   ├── Scale.cs
│   │   │   ├── StickItem.cs
│   │   │   ├── Symbol.cs
│   │   │   ├── TextObj.cs
│   │   │   ├── TextScale.cs
│   │   │   ├── Types.cs
│   │   │   ├── ValueHandler.cs
│   │   │   ├── X2Axis.cs
│   │   │   ├── XAxis.cs
│   │   │   ├── Y2Axis.cs
│   │   │   ├── Y2AxisList.cs
│   │   │   ├── YAxis.cs
│   │   │   └── YAxisList.cs
│   │   ├── Example6_2_1.sln
│   │   └── Example6_2_1.suo
│   ├── Example6_3_1
│   │   ├── Example6_3_1
│   │   │   ├── ArrowObj.cs
│   │   │   ├── Axis.cs
│   │   │   ├── AxisLabel.cs
│   │   │   ├── Bar.cs
│   │   │   ├── BarItem.cs
│   │   │   ├── BarSettings.cs
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   │   ├── Example6_3_1.exe
│   │   │   │   ├── Example6_3_1.pdb
│   │   │   │   └── Example6_3_1.vshost.exe
│   │   │   ├── Border.cs
│   │   │   ├── BoxObj.cs
│   │   │   ├── Chart.cs
│   │   │   ├── ColorSymbolRotator.cs
│   │   │   ├── CurveItem.cs
│   │   │   ├── CurveList.cs
│   │   │   ├── DateAsOrdinalScale.cs
│   │   │   ├── DateScale.cs
│   │   │   ├── ErrorBar.cs
│   │   │   ├── ErrorBarItem.cs
│   │   │   ├── Example6_3_1.csproj
│   │   │   ├── Fill.cs
│   │   │   ├── FontSpec.cs
│   │   │   ├── Form1.cs
│   │   │   ├── Form1.designer.cs
│   │   │   ├── Form1.resx
│   │   │   ├── GapLabel.cs
│   │   │   ├── GraphObj.cs
│   │   │   ├── GraphObjList.cs
│   │   │   ├── GraphPane.cs
│   │   │   ├── IPointList.cs
│   │   │   ├── IPointListEdit.cs
│   │   │   ├── Label.cs
│   │   │   ├── Legend.cs
│   │   │   ├── LinearAsOrdinalScale.cs
│   │   │   ├── LinearScale.cs
│   │   │   ├── LineBase.cs
│   │   │   ├── Line.cs
│   │   │   ├── LineItem.cs
│   │   │   ├── LineObj.cs
│   │   │   ├── Location.cs
│   │   │   ├── LogScale.cs
│   │   │   ├── MajorGrid.cs
│   │   │   ├── MajorTic.cs
│   │   │   ├── Margin.cs
│   │   │   ├── MasterPane.cs
│   │   │   ├── MinorGrid.cs
│   │   │   ├── MinorTic.cs
│   │   │   ├── obj
│   │   │   │   ├── Debug
│   │   │   │   │   ├── Example6_3_1.csproj.GenerateResource.Cache
│   │   │   │   │   ├── Example6_3_1.exe
│   │   │   │   │   ├── Example6_3_1.Form1.resources
│   │   │   │   │   ├── Example6_3_1.pdb
│   │   │   │   │   ├── Example6_3_1.Properties.Resources.resources
│   │   │   │   │   └── TempPE
│   │   │   │   └── Example6_3_1.csproj.FileListAbsolute.txt
│   │   │   ├── OrdinalScale.cs
│   │   │   ├── PaneBase.cs
│   │   │   ├── PaneList.cs
│   │   │   ├── PieItem.cs
│   │   │   ├── PointPairBase.cs
│   │   │   ├── PointPair.cs
│   │   │   ├── PointPairList.cs
│   │   │   ├── Program.cs
│   │   │   ├── Properties
│   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   ├── Resources.Designer.cs
│   │   │   │   ├── Resources.resx
│   │   │   │   ├── Settings.Designer.cs
│   │   │   │   └── Settings.settings
│   │   │   ├── Scale.cs
│   │   │   ├── StickItem.cs
│   │   │   ├── StockPointList.cs
│   │   │   ├── StockPt.cs
│   │   │   ├── Symbol.cs
│   │   │   ├── TextObj.cs
│   │   │   ├── TextScale.cs
│   │   │   ├── Types.cs
│   │   │   ├── ValueHandler.cs
│   │   │   ├── X2Axis.cs
│   │   │   ├── XAxis.cs
│   │   │   ├── XDate.cs
│   │   │   ├── Y2Axis.cs
│   │   │   ├── Y2AxisList.cs
│   │   │   ├── YAxis.cs
│   │   │   └── YAxisList.cs
│   │   ├── Example6_3_1.sln
│   │   └── Example6_3_1.suo
│   ├── Example6_4_2
│   │   ├── Example6_4_2
│   │   │   ├── ArrowObj.cs
│   │   │   ├── Axis.cs
│   │   │   ├── AxisLabel.cs
│   │   │   ├── Bar.cs
│   │   │   ├── BarItem.cs
│   │   │   ├── BarSettings.cs
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   │   ├── Example6_4_2.exe
│   │   │   │   ├── Example6_4_2.pdb
│   │   │   │   └── Example6_4_2.vshost.exe
│   │   │   ├── Border.cs
│   │   │   ├── BoxObj.cs
│   │   │   ├── Chart.cs
│   │   │   ├── ColorSymbolRotator.cs
│   │   │   ├── CurveItem.cs
│   │   │   ├── CurveList.cs
│   │   │   ├── DateAsOrdinalScale.cs
│   │   │   ├── DateScale.cs
│   │   │   ├── ErrorBar.cs
│   │   │   ├── ErrorBarItem.cs
│   │   │   ├── Example6_4_2.csproj
│   │   │   ├── Fill.cs
│   │   │   ├── FontSpec.cs
│   │   │   ├── Form1.cs
│   │   │   ├── Form1.designer.cs
│   │   │   ├── Form1.resx
│   │   │   ├── GapLabel.cs
│   │   │   ├── GraphObj.cs
│   │   │   ├── GraphObjList.cs
│   │   │   ├── GraphPane.cs
│   │   │   ├── IPointList.cs
│   │   │   ├── IPointListEdit.cs
│   │   │   ├── Label.cs
│   │   │   ├── Legend.cs
│   │   │   ├── LinearAsOrdinalScale.cs
│   │   │   ├── LinearScale.cs
│   │   │   ├── LineBase.cs
│   │   │   ├── Line.cs
│   │   │   ├── LineItem.cs
│   │   │   ├── LineObj.cs
│   │   │   ├── Location.cs
│   │   │   ├── LogScale.cs
│   │   │   ├── MajorGrid.cs
│   │   │   ├── MajorTic.cs
│   │   │   ├── Margin.cs
│   │   │   ├── MasterPane.cs
│   │   │   ├── MinorGrid.cs
│   │   │   ├── MinorTic.cs
│   │   │   ├── obj
│   │   │   │   ├── Debug
│   │   │   │   │   ├── Example6_4_2.csproj.GenerateResource.Cache
│   │   │   │   │   ├── Example6_4_2.exe
│   │   │   │   │   ├── Example6_4_2.Form1.resources
│   │   │   │   │   ├── Example6_4_2.pdb
│   │   │   │   │   ├── Example6_4_2.Properties.Resources.resources
│   │   │   │   │   └── TempPE
│   │   │   │   └── Example6_4_2.csproj.FileListAbsolute.txt
│   │   │   ├── OHLCBar.cs
│   │   │   ├── OHLCBarItem.cs
│   │   │   ├── OrdinalScale.cs
│   │   │   ├── PaneBase.cs
│   │   │   ├── PaneList.cs
│   │   │   ├── PieItem.cs
│   │   │   ├── PointPairBase.cs
│   │   │   ├── PointPair.cs
│   │   │   ├── PointPairList.cs
│   │   │   ├── Program.cs
│   │   │   ├── Properties
│   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   ├── Resources.Designer.cs
│   │   │   │   ├── Resources.resx
│   │   │   │   ├── Settings.Designer.cs
│   │   │   │   └── Settings.settings
│   │   │   ├── Scale.cs
│   │   │   ├── StickItem.cs
│   │   │   ├── StockPointList.cs
│   │   │   ├── StockPt.cs
│   │   │   ├── Symbol.cs
│   │   │   ├── TextObj.cs
│   │   │   ├── TextScale.cs
│   │   │   ├── Types.cs
│   │   │   ├── ValueHandler.cs
│   │   │   ├── X2Axis.cs
│   │   │   ├── XAxis.cs
│   │   │   ├── XDate.cs
│   │   │   ├── Y2Axis.cs
│   │   │   ├── Y2AxisList.cs
│   │   │   ├── YAxis.cs
│   │   │   └── YAxisList.cs
│   │   ├── Example6_4_2.sln
│   │   └── Example6_4_2.suo
│   ├── Example6_4_3
│   │   ├── Example6_4_3
│   │   │   ├── ArrowObj.cs
│   │   │   ├── Axis.cs
│   │   │   ├── AxisLabel.cs
│   │   │   ├── Bar.cs
│   │   │   ├── BarItem.cs
│   │   │   ├── BarSettings.cs
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   │   ├── Example6_4_3.exe
│   │   │   │   ├── Example6_4_3.pdb
│   │   │   │   └── Example6_4_3.vshost.exe
│   │   │   ├── Border.cs
│   │   │   ├── BoxObj.cs
│   │   │   ├── Chart.cs
│   │   │   ├── ColorSymbolRotator.cs
│   │   │   ├── CurveItem.cs
│   │   │   ├── CurveList.cs
│   │   │   ├── DateAsOrdinalScale.cs
│   │   │   ├── DateScale.cs
│   │   │   ├── ErrorBar.cs
│   │   │   ├── ErrorBarItem.cs
│   │   │   ├── Example6_4_3.csproj
│   │   │   ├── Fill.cs
│   │   │   ├── FontSpec.cs
│   │   │   ├── Form1.cs
│   │   │   ├── Form1.designer.cs
│   │   │   ├── Form1.resx
│   │   │   ├── GapLabel.cs
│   │   │   ├── GraphObj.cs
│   │   │   ├── GraphObjList.cs
│   │   │   ├── GraphPane.cs
│   │   │   ├── HiLowBar.cs
│   │   │   ├── HiLowBarItem.cs
│   │   │   ├── IPointList.cs
│   │   │   ├── IPointListEdit.cs
│   │   │   ├── Label.cs
│   │   │   ├── Legend.cs
│   │   │   ├── LinearAsOrdinalScale.cs
│   │   │   ├── LinearScale.cs
│   │   │   ├── LineBase.cs
│   │   │   ├── Line.cs
│   │   │   ├── LineItem.cs
│   │   │   ├── LineObj.cs
│   │   │   ├── Location.cs
│   │   │   ├── LogScale.cs
│   │   │   ├── MajorGrid.cs
│   │   │   ├── MajorTic.cs
│   │   │   ├── Margin.cs
│   │   │   ├── MasterPane.cs
│   │   │   ├── MinorGrid.cs
│   │   │   ├── MinorTic.cs
│   │   │   ├── obj
│   │   │   │   ├── Debug
│   │   │   │   │   ├── Example6_4_3.csproj.GenerateResource.Cache
│   │   │   │   │   ├── Example6_4_3.exe
│   │   │   │   │   ├── Example6_4_3.Form1.resources
│   │   │   │   │   ├── Example6_4_3.pdb
│   │   │   │   │   ├── Example6_4_3.Properties.Resources.resources
│   │   │   │   │   └── TempPE
│   │   │   │   └── Example6_4_3.csproj.FileListAbsolute.txt
│   │   │   ├── OHLCBar.cs
│   │   │   ├── OHLCBarItem.cs
│   │   │   ├── OrdinalScale.cs
│   │   │   ├── PaneBase.cs
│   │   │   ├── PaneList.cs
│   │   │   ├── PieItem.cs
│   │   │   ├── PointPairBase.cs
│   │   │   ├── PointPair.cs
│   │   │   ├── PointPairList.cs
│   │   │   ├── Program.cs
│   │   │   ├── Properties
│   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   ├── Resources.Designer.cs
│   │   │   │   ├── Resources.resx
│   │   │   │   ├── Settings.Designer.cs
│   │   │   │   └── Settings.settings
│   │   │   ├── Scale.cs
│   │   │   ├── StickItem.cs
│   │   │   ├── StockPointList.cs
│   │   │   ├── StockPt.cs
│   │   │   ├── Symbol.cs
│   │   │   ├── TextObj.cs
│   │   │   ├── TextScale.cs
│   │   │   ├── Types.cs
│   │   │   ├── ValueHandler.cs
│   │   │   ├── X2Axis.cs
│   │   │   ├── XAxis.cs
│   │   │   ├── XDate.cs
│   │   │   ├── Y2Axis.cs
│   │   │   ├── Y2AxisList.cs
│   │   │   ├── YAxis.cs
│   │   │   └── YAxisList.cs
│   │   ├── Example6_4_3.sln
│   │   └── Example6_4_3.suo
│   ├── Example6_4_4
│   │   ├── Example6_4_4
│   │   │   ├── ArrowObj.cs
│   │   │   ├── Axis.cs
│   │   │   ├── AxisLabel.cs
│   │   │   ├── Bar.cs
│   │   │   ├── BarItem.cs
│   │   │   ├── BarSettings.cs
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   │   ├── Example6_4_4.exe
│   │   │   │   ├── Example6_4_4.pdb
│   │   │   │   └── Example6_4_4.vshost.exe
│   │   │   ├── Border.cs
│   │   │   ├── BoxObj.cs
│   │   │   ├── Chart.cs
│   │   │   ├── ColorSymbolRotator.cs
│   │   │   ├── CurveItem.cs
│   │   │   ├── CurveList.cs
│   │   │   ├── DateAsOrdinalScale.cs
│   │   │   ├── DateScale.cs
│   │   │   ├── ErrorBar.cs
│   │   │   ├── ErrorBarItem.cs
│   │   │   ├── Example6_4_4.csproj
│   │   │   ├── Fill.cs
│   │   │   ├── FontSpec.cs
│   │   │   ├── Form1.cs
│   │   │   ├── Form1.designer.cs
│   │   │   ├── Form1.resx
│   │   │   ├── GapLabel.cs
│   │   │   ├── GraphObj.cs
│   │   │   ├── GraphObjList.cs
│   │   │   ├── GraphPane.cs
│   │   │   ├── HiLowBar.cs
│   │   │   ├── HiLowBarItem.cs
│   │   │   ├── IPointList.cs
│   │   │   ├── IPointListEdit.cs
│   │   │   ├── JapaneseCandleStick.cs
│   │   │   ├── JapaneseCandleStickItem.cs
│   │   │   ├── Label.cs
│   │   │   ├── Legend.cs
│   │   │   ├── LinearAsOrdinalScale.cs
│   │   │   ├── LinearScale.cs
│   │   │   ├── LineBase.cs
│   │   │   ├── Line.cs
│   │   │   ├── LineItem.cs
│   │   │   ├── LineObj.cs
│   │   │   ├── Location.cs
│   │   │   ├── LogScale.cs
│   │   │   ├── MajorGrid.cs
│   │   │   ├── MajorTic.cs
│   │   │   ├── Margin.cs
│   │   │   ├── MasterPane.cs
│   │   │   ├── MinorGrid.cs
│   │   │   ├── MinorTic.cs
│   │   │   ├── obj
│   │   │   │   ├── Debug
│   │   │   │   │   ├── Example6_4_4.csproj.GenerateResource.Cache
│   │   │   │   │   ├── Example6_4_4.exe
│   │   │   │   │   ├── Example6_4_4.Form1.resources
│   │   │   │   │   ├── Example6_4_4.pdb
│   │   │   │   │   ├── Example6_4_4.Properties.Resources.resources
│   │   │   │   │   └── TempPE
│   │   │   │   └── Example6_4_4.csproj.FileListAbsolute.txt
│   │   │   ├── OHLCBar.cs
│   │   │   ├── OHLCBarItem.cs
│   │   │   ├── OrdinalScale.cs
│   │   │   ├── PaneBase.cs
│   │   │   ├── PaneList.cs
│   │   │   ├── PieItem.cs
│   │   │   ├── PointPairBase.cs
│   │   │   ├── PointPair.cs
│   │   │   ├── PointPairList.cs
│   │   │   ├── Program.cs
│   │   │   ├── Properties
│   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   ├── Resources.Designer.cs
│   │   │   │   ├── Resources.resx
│   │   │   │   ├── Settings.Designer.cs
│   │   │   │   └── Settings.settings
│   │   │   ├── Scale.cs
│   │   │   ├── StickItem.cs
│   │   │   ├── StockPointList.cs
│   │   │   ├── StockPt.cs
│   │   │   ├── Symbol.cs
│   │   │   ├── TextObj.cs
│   │   │   ├── TextScale.cs
│   │   │   ├── Types.cs
│   │   │   ├── ValueHandler.cs
│   │   │   ├── X2Axis.cs
│   │   │   ├── XAxis.cs
│   │   │   ├── XDate.cs
│   │   │   ├── Y2Axis.cs
│   │   │   ├── Y2AxisList.cs
│   │   │   ├── YAxis.cs
│   │   │   └── YAxisList.cs
│   │   ├── Example6_4_4.sln
│   │   └── Example6_4_4.suo
│   ├── Example6_5_1
│   │   ├── Example6_5_1
│   │   │   ├── ArrowObj.cs
│   │   │   ├── Axis.cs
│   │   │   ├── AxisLabel.cs
│   │   │   ├── Bar.cs
│   │   │   ├── BarItem.cs
│   │   │   ├── BarSettings.cs
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   │   ├── Example6_5_1.exe
│   │   │   │   ├── Example6_5_1.pdb
│   │   │   │   └── Example6_5_1.vshost.exe
│   │   │   ├── Border.cs
│   │   │   ├── BoxObj.cs
│   │   │   ├── Chart.cs
│   │   │   ├── ColorSymbolRotator.cs
│   │   │   ├── CurveItem.cs
│   │   │   ├── CurveList.cs
│   │   │   ├── DateAsOrdinalScale.cs
│   │   │   ├── DateScale.cs
│   │   │   ├── ErrorBar.cs
│   │   │   ├── ErrorBarItem.cs
│   │   │   ├── Example6_5_1.csproj
│   │   │   ├── Fill.cs
│   │   │   ├── FontSpec.cs
│   │   │   ├── Form1.cs
│   │   │   ├── Form1.designer.cs
│   │   │   ├── Form1.resx
│   │   │   ├── GapLabel.cs
│   │   │   ├── GraphObj.cs
│   │   │   ├── GraphObjList.cs
│   │   │   ├── GraphPane.cs
│   │   │   ├── HiLowBar.cs
│   │   │   ├── HiLowBarItem.cs
│   │   │   ├── IPointList.cs
│   │   │   ├── IPointListEdit.cs
│   │   │   ├── JapaneseCandleStick.cs
│   │   │   ├── JapaneseCandleStickItem.cs
│   │   │   ├── Label.cs
│   │   │   ├── Legend.cs
│   │   │   ├── LinearAsOrdinalScale.cs
│   │   │   ├── LinearScale.cs
│   │   │   ├── LineBase.cs
│   │   │   ├── Line.cs
│   │   │   ├── LineItem.cs
│   │   │   ├── LineObj.cs
│   │   │   ├── Location.cs
│   │   │   ├── LogScale.cs
│   │   │   ├── MajorGrid.cs
│   │   │   ├── MajorTic.cs
│   │   │   ├── Margin.cs
│   │   │   ├── MasterPane.cs
│   │   │   ├── MinorGrid.cs
│   │   │   ├── MinorTic.cs
│   │   │   ├── obj
│   │   │   │   ├── Debug
│   │   │   │   │   ├── Example6_5_1.csproj.GenerateResource.Cache
│   │   │   │   │   ├── Example6_5_1.exe
│   │   │   │   │   ├── Example6_5_1.Form1.resources
│   │   │   │   │   ├── Example6_5_1.pdb
│   │   │   │   │   ├── Example6_5_1.Properties.Resources.resources
│   │   │   │   │   └── TempPE
│   │   │   │   └── Example6_5_1.csproj.FileListAbsolute.txt
│   │   │   ├── OHLCBar.cs
│   │   │   ├── OHLCBarItem.cs
│   │   │   ├── OrdinalScale.cs
│   │   │   ├── PaneBase.cs
│   │   │   ├── PaneList.cs
│   │   │   ├── PieItem.cs
│   │   │   ├── PointPairBase.cs
│   │   │   ├── PointPair.cs
│   │   │   ├── PointPairList.cs
│   │   │   ├── Program.cs
│   │   │   ├── Properties
│   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   ├── Resources.Designer.cs
│   │   │   │   ├── Resources.resx
│   │   │   │   ├── Settings.Designer.cs
│   │   │   │   └── Settings.settings
│   │   │   ├── Scale.cs
│   │   │   ├── StickItem.cs
│   │   │   ├── StockPointList.cs
│   │   │   ├── StockPt.cs
│   │   │   ├── Symbol.cs
│   │   │   ├── TextObj.cs
│   │   │   ├── TextScale.cs
│   │   │   ├── Types.cs
│   │   │   ├── ValueHandler.cs
│   │   │   ├── X2Axis.cs
│   │   │   ├── XAxis.cs
│   │   │   ├── XDate.cs
│   │   │   ├── Y2Axis.cs
│   │   │   ├── Y2AxisList.cs
│   │   │   ├── YAxis.cs
│   │   │   └── YAxisList.cs
│   │   ├── Example6_5_1.sln
│   │   └── Example6_5_1.suo
│   └── Example6_6_1
│   ├── Example6_6_1
│   │   ├── ArrowObj.cs
│   │   ├── Axis.cs
│   │   ├── AxisLabel.cs
│   │   ├── Bar.cs
│   │   ├── BarItem.cs
│   │   ├── BarSettings.cs
│   │   ├── bin
│   │   │   └── Debug
│   │   │   ├── Example6_6_1.exe
│   │   │   ├── Example6_6_1.pdb
│   │   │   └── Example6_6_1.vshost.exe
│   │   ├── Border.cs
│   │   ├── BoxObj.cs
│   │   ├── Chart.cs
│   │   ├── ColorSymbolRotator.cs
│   │   ├── CurveItem.cs
│   │   ├── CurveList.cs
│   │   ├── DateAsOrdinalScale.cs
│   │   ├── DateScale.cs
│   │   ├── ErrorBar.cs
│   │   ├── ErrorBarItem.cs
│   │   ├── Example6_6_1.csproj
│   │   ├── Fill.cs
│   │   ├── FontSpec.cs
│   │   ├── Form1.cs
│   │   ├── Form1.designer.cs
│   │   ├── Form1.resx
│   │   ├── GapLabel.cs
│   │   ├── GraphObj.cs
│   │   ├── GraphObjList.cs
│   │   ├── GraphPane.cs
│   │   ├── HiLowBar.cs
│   │   ├── HiLowBarItem.cs
│   │   ├── IPointList.cs
│   │   ├── IPointListEdit.cs
│   │   ├── JapaneseCandleStick.cs
│   │   ├── JapaneseCandleStickItem.cs
│   │   ├── Label.cs
│   │   ├── Legend.cs
│   │   ├── LinearAsOrdinalScale.cs
│   │   ├── LinearScale.cs
│   │   ├── LineBase.cs
│   │   ├── Line.cs
│   │   ├── LineItem.cs
│   │   ├── LineObj.cs
│   │   ├── Location.cs
│   │   ├── LogScale.cs
│   │   ├── MajorGrid.cs
│   │   ├── MajorTic.cs
│   │   ├── Margin.cs
│   │   ├── MasterPane.cs
│   │   ├── MinorGrid.cs
│   │   ├── MinorTic.cs
│   │   ├── obj
│   │   │   ├── Debug
│   │   │   │   ├── Example6_6_1.csproj.GenerateResource.Cache
│   │   │   │   ├── Example6_6_1.exe
│   │   │   │   ├── Example6_6_1.Form1.resources
│   │   │   │   ├── Example6_6_1.pdb
│   │   │   │   ├── Example6_6_1.Properties.Resources.resources
│   │   │   │   └── TempPE
│   │   │   └── Example6_6_1.csproj.FileListAbsolute.txt
│   │   ├── OHLCBar.cs
│   │   ├── OHLCBarItem.cs
│   │   ├── OrdinalScale.cs
│   │   ├── PaneBase.cs
│   │   ├── PaneList.cs
│   │   ├── PieItem.cs
│   │   ├── PointPairBase.cs
│   │   ├── PointPair.cs
│   │   ├── PointPairList.cs
│   │   ├── Program.cs
│   │   ├── Properties
│   │   │   ├── AssemblyInfo.cs
│   │   │   ├── Resources.Designer.cs
│   │   │   ├── Resources.resx
│   │   │   ├── Settings.Designer.cs
│   │   │   └── Settings.settings
│   │   ├── Scale.cs
│   │   ├── StickItem.cs
│   │   ├── StockPointList.cs
│   │   ├── StockPt.cs
│   │   ├── Symbol.cs
│   │   ├── TextObj.cs
│   │   ├── TextScale.cs
│   │   ├── Types.cs
│   │   ├── ValueHandler.cs
│   │   ├── X2Axis.cs
│   │   ├── XAxis.cs
│   │   ├── XDate.cs
│   │   ├── Y2Axis.cs
│   │   ├── Y2AxisList.cs
│   │   ├── YAxis.cs
│   │   └── YAxisList.cs
│   ├── Example6_6_1.sln
│   └── Example6_6_1.suo
├── chapter7-8
│   ├── Chapter7
│   │   ├── Example7_2_1
│   │   │   ├── Example7_2_1
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │   ├── Example7_2_1.exe
│   │   │   │   │   ├── Example7_2_1.pdb
│   │   │   │   │   └── Example7_2_1.vshost.exe
│   │   │   │   ├── Example7_2_1.csproj
│   │   │   │   ├── Form1.cs
│   │   │   │   ├── Form1.designer.cs
│   │   │   │   ├── Form1.resx
│   │   │   │   ├── Matrix3.cs
│   │   │   │   ├── obj
│   │   │   │   │   ├── Debug
│   │   │   │   │   │   ├── Example7_2_1.csproj.GenerateResource.Cache
│   │   │   │   │   │   ├── Example7_2_1.exe
│   │   │   │   │   │   ├── Example7_2_1.Form1.resources
│   │   │   │   │   │   ├── Example7_2_1.pdb
│   │   │   │   │   │   ├── Example7_2_1.Properties.Resources.resources
│   │   │   │   │   │   └── TempPE
│   │   │   │   │   └── Example7_2_1.csproj.FileListAbsolute.txt
│   │   │   │   ├── Point3.cs
│   │   │   │   ├── Program.cs
│   │   │   │   └── Properties
│   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   ├── Resources.Designer.cs
│   │   │   │   ├── Resources.resx
│   │   │   │   ├── Settings.Designer.cs
│   │   │   │   └── Settings.settings
│   │   │   ├── Example7_2_1.sln
│   │   │   └── Example7_2_1.suo
│   │   ├── Example7_2_2
│   │   │   ├── Example7_2_2
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │   ├── Example7_2_2.exe
│   │   │   │   │   ├── Example7_2_2.pdb
│   │   │   │   │   └── Example7_2_2.vshost.exe
│   │   │   │   ├── DrawHouse.cs
│   │   │   │   ├── Example7_2_2.csproj
│   │   │   │   ├── Form1.cs
│   │   │   │   ├── Form1.designer.cs
│   │   │   │   ├── Form1.resx
│   │   │   │   ├── Matrix3.cs
│   │   │   │   ├── obj
│   │   │   │   │   ├── Debug
│   │   │   │   │   │   ├── Example7_2_2.csproj.GenerateResource.Cache
│   │   │   │   │   │   ├── Example7_2_2.exe
│   │   │   │   │   │   ├── Example7_2_2.Form1.resources
│   │   │   │   │   │   ├── Example7_2_2.pdb
│   │   │   │   │   │   ├── Example7_2_2.Properties.Resources.resources
│   │   │   │   │   │   └── TempPE
│   │   │   │   │   └── Example7_2_2.csproj.FileListAbsolute.txt
│   │   │   │   ├── Point3.cs
│   │   │   │   ├── Program.cs
│   │   │   │   └── Properties
│   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   ├── Resources.Designer.cs
│   │   │   │   ├── Resources.resx
│   │   │   │   ├── Settings.Designer.cs
│   │   │   │   └── Settings.settings
│   │   │   ├── Example7_2_2.sln
│   │   │   └── Example7_2_2.suo
│   │   ├── Example7_2_3
│   │   │   ├── Example7_2_3
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │   ├── Example7_2_3.exe
│   │   │   │   │   ├── Example7_2_3.pdb
│   │   │   │   │   └── Example7_2_3.vshost.exe
│   │   │   │   ├── DrawHouse.cs
│   │   │   │   ├── Example7_2_3.csproj
│   │   │   │   ├── Form1.cs
│   │   │   │   ├── Form1.designer.cs
│   │   │   │   ├── Form1.resx
│   │   │   │   ├── Matrix3.cs
│   │   │   │   ├── obj
│   │   │   │   │   ├── Debug
│   │   │   │   │   │   ├── Example7_2_3.csproj.GenerateResource.Cache
│   │   │   │   │   │   ├── Example7_2_3.exe
│   │   │   │   │   │   ├── Example7_2_3.Form1.resources
│   │   │   │   │   │   ├── Example7_2_3.pdb
│   │   │   │   │   │   ├── Example7_2_3.Properties.Resources.resources
│   │   │   │   │   │   └── TempPE
│   │   │   │   │   └── Example7_2_3.csproj.FileListAbsolute.txt
│   │   │   │   ├── Point3.cs
│   │   │   │   ├── Program.cs
│   │   │   │   └── Properties
│   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   ├── Resources.Designer.cs
│   │   │   │   ├── Resources.resx
│   │   │   │   ├── Settings.Designer.cs
│   │   │   │   └── Settings.settings
│   │   │   ├── Example7_2_3.sln
│   │   │   └── Example7_2_3.suo
│   │   ├── Example7_2_4
│   │   │   ├── Example7_2_4
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │   ├── Example7_2_4.exe
│   │   │   │   │   ├── Example7_2_4.pdb
│   │   │   │   │   └── Example7_2_4.vshost.exe
│   │   │   │   ├── DrawHouse.cs
│   │   │   │   ├── Example7_2_4.csproj
│   │   │   │   ├── Form1.cs
│   │   │   │   ├── Form1.designer.cs
│   │   │   │   ├── Form1.resx
│   │   │   │   ├── Matrix3.cs
│   │   │   │   ├── obj
│   │   │   │   │   ├── Debug
│   │   │   │   │   │   ├── Example7_2_4.csproj.GenerateResource.Cache
│   │   │   │   │   │   ├── Example7_2_4.exe
│   │   │   │   │   │   ├── Example7_2_4.Form1.resources
│   │   │   │   │   │   ├── Example7_2_4.pdb
│   │   │   │   │   │   ├── Example7_2_4.Properties.Resources.resources
│   │   │   │   │   │   └── TempPE
│   │   │   │   │   └── Example7_2_4.csproj.FileListAbsolute.txt
│   │   │   │   ├── Point3.cs
│   │   │   │   ├── Program.cs
│   │   │   │   └── Properties
│   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   ├── Resources.Designer.cs
│   │   │   │   ├── Resources.resx
│   │   │   │   ├── Settings.Designer.cs
│   │   │   │   └── Settings.settings
│   │   │   ├── Example7_2_4.sln
│   │   │   └── Example7_2_4.suo
│   │   ├── Example7_2_5
│   │   │   ├── Example7_2_5
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │   ├── Example7_2_5.exe
│   │   │   │   │   ├── Example7_2_5.pdb
│   │   │   │   │   └── Example7_2_5.vshost.exe
│   │   │   │   ├── DrawCube.cs
│   │   │   │   ├── Example7_2_5.csproj
│   │   │   │   ├── Form1.cs
│   │   │   │   ├── Form1.designer.cs
│   │   │   │   ├── Form1.resx
│   │   │   │   ├── Matrix3.cs
│   │   │   │   ├── obj
│   │   │   │   │   ├── Debug
│   │   │   │   │   │   ├── Example7_2_5.csproj.GenerateResource.Cache
│   │   │   │   │   │   ├── Example7_2_5.exe
│   │   │   │   │   │   ├── Example7_2_5.Form1.resources
│   │   │   │   │   │   ├── Example7_2_5.pdb
│   │   │   │   │   │   ├── Example7_2_5.Properties.Resources.resources
│   │   │   │   │   │   └── TempPE
│   │   │   │   │   └── Example7_2_5.csproj.FileListAbsolute.txt
│   │   │   │   ├── Point3.cs
│   │   │   │   ├── Program.cs
│   │   │   │   └── Properties
│   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   ├── Resources.Designer.cs
│   │   │   │   ├── Resources.resx
│   │   │   │   ├── Settings.Designer.cs
│   │   │   │   └── Settings.settings
│   │   │   ├── Example7_2_5.sln
│   │   │   └── Example7_2_5.suo
│   │   ├── Example7_2_6
│   │   │   ├── Example7_2_6
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │   ├── Example7_2_6.exe
│   │   │   │   │   ├── Example7_2_6.pdb
│   │   │   │   │   └── Example7_2_6.vshost.exe
│   │   │   │   ├── DrawSphere.cs
│   │   │   │   ├── Example7_2_6.csproj
│   │   │   │   ├── Form1.cs
│   │   │   │   ├── Form1.designer.cs
│   │   │   │   ├── Form1.resx
│   │   │   │   ├── Matrix3.cs
│   │   │   │   ├── obj
│   │   │   │   │   ├── Debug
│   │   │   │   │   │   ├── Example7_2_6.csproj.GenerateResource.Cache
│   │   │   │   │   │   ├── Example7_2_6.exe
│   │   │   │   │   │   ├── Example7_2_6.Form1.resources
│   │   │   │   │   │   ├── Example7_2_6.pdb
│   │   │   │   │   │   ├── Example7_2_6.Properties.Resources.resources
│   │   │   │   │   │   └── TempPE
│   │   │   │   │   └── Example7_2_6.csproj.FileListAbsolute.txt
│   │   │   │   ├── Point3.cs
│   │   │   │   ├── Program.cs
│   │   │   │   └── Properties
│   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   ├── Resources.Designer.cs
│   │   │   │   ├── Resources.resx
│   │   │   │   ├── Settings.Designer.cs
│   │   │   │   └── Settings.settings
│   │   │   ├── Example7_2_6.sln
│   │   │   └── Example7_2_6.suo
│   │   ├── Example7_2_7
│   │   │   ├── Example7_2_7
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │   ├── Example7_2_7.exe
│   │   │   │   │   ├── Example7_2_7.pdb
│   │   │   │   │   └── Example7_2_7.vshost.exe
│   │   │   │   ├── DrawCylinder.cs
│   │   │   │   ├── Example7_2_7.csproj
│   │   │   │   ├── Form1.cs
│   │   │   │   ├── Form1.designer.cs
│   │   │   │   ├── Form1.resx
│   │   │   │   ├── Matrix3.cs
│   │   │   │   ├── obj
│   │   │   │   │   ├── Debug
│   │   │   │   │   │   ├── Example7_2_7.csproj.GenerateResource.Cache
│   │   │   │   │   │   ├── Example7_2_7.exe
│   │   │   │   │   │   ├── Example7_2_7.Form1.resources
│   │   │   │   │   │   ├── Example7_2_7.pdb
│   │   │   │   │   │   ├── Example7_2_7.Properties.Resources.resources
│   │   │   │   │   │   └── TempPE
│   │   │   │   │   └── Example7_2_7.csproj.FileListAbsolute.txt
│   │   │   │   ├── Point3.cs
│   │   │   │   ├── Program.cs
│   │   │   │   └── Properties
│   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   ├── Resources.Designer.cs
│   │   │   │   ├── Resources.resx
│   │   │   │   ├── Settings.Designer.cs
│   │   │   │   └── Settings.settings
│   │   │   ├── Example7_2_7.sln
│   │   │   └── Example7_2_7.suo
│   │   ├── Example7_2_8
│   │   │   ├── Example7_2_8
│   │   │   │   ├── bin
│   │   │   │   │   └── Debug
│   │   │   │   │   ├── Example7_2_8.exe
│   │   │   │   │   ├── Example7_2_8.pdb
│   │   │   │   │   ├── Example7_2_8.vshost.exe
│   │   │   │   │   ├── pds.txt
│   │   │   │   │   ├── phi.txt
│   │   │   │   │   └── theta.txt
│   │   │   │   ├── ChartStyle.cs
│   │   │   │   ├── ColorMap.cs
│   │   │   │   ├── DrawSphere.cs
│   │   │   │   ├── Example7_2_8.csproj
│   │   │   │   ├── Form1.cs
│   │   │   │   ├── Form1.designer.cs
│   │   │   │   ├── Form1.resx
│   │   │   │   ├── Matrix3.cs
│   │   │   │   ├── obj
│   │   │   │   │   ├── Debug
│   │   │   │   │   │   ├── Example7_2_8.csproj.GenerateResource.Cache
│   │   │   │   │   │   ├── Example7_2_8.exe
│   │   │   │   │   │   ├── Example7_2_8.Form1.resources
│   │   │   │   │   │   ├── Example7_2_8.pdb
│   │   │   │   │   │   ├── Example7_2_8.Properties.Resources.resources
│   │   │   │   │   │   └── TempPE
│   │   │   │   │   └── Example7_2_8.csproj.FileListAbsolute.txt
│   │   │   │   ├── Point3.cs
│   │   │   │   ├── Program.cs
│   │   │   │   └── Properties
│   │   │   │   ├── AssemblyInfo.cs
│   │   │   │   ├── Resources.Designer.cs
│   │   │   │   ├── Resources.resx
│   │   │   │   ├── Settings.Designer.cs
│   │   │   │   └── Settings.settings
│   │   │   ├── Example7_2_8.sln
│   │   │   └── Example7_2_8.suo
│   │   └── Example7_2_9
│   │   ├── Example7_2_9
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   │   ├── Example7_2_9.exe
│   │   │   │   ├── Example7_2_9.pdb
│   │   │   │   ├── Example7_2_9.vshost.exe
│   │   │   │   ├── pds.txt
│   │   │   │   ├── phi.txt
│   │   │   │   ├── Rotate.cur
│   │   │   │   └── theta.txt
│   │   │   ├── ChartStyle.cs
│   │   │   ├── ColorMap.cs
│   │   │   ├── DrawSphere.cs
│   │   │   ├── Example7_2_9.csproj
│   │   │   ├── Form1.cs
│   │   │   ├── Form1.designer.cs
│   │   │   ├── Form1.resx
│   │   │   ├── Matrix3.cs
│   │   │   ├── obj
│   │   │   │   ├── Debug
│   │   │   │   │   ├── Example7_2_9.csproj.GenerateResource.Cache
│   │   │   │   │   ├── Example7_2_9.exe
│   │   │   │   │   ├── Example7_2_9.Form1.resources
│   │   │   │   │   ├── Example7_2_9.pdb
│   │   │   │   │   ├── Example7_2_9.Properties.Resources.resources
│   │   │   │   │   └── TempPE
│   │   │   │   └── Example7_2_9.csproj.FileListAbsolute.txt
│   │   │   ├── Point3.cs
│   │   │   ├── Program.cs
│   │   │   └── Properties
│   │   │   ├── AssemblyInfo.cs
│   │   │   ├── Resources.Designer.cs
│   │   │   ├── Resources.resx
│   │   │   ├── Settings.Designer.cs
│   │   │   └── Settings.settings
│   │   ├── Example7_2_9.sln
│   │   ├── Example7_2_9.suo
│   │   └── Rotate.cur
│   └── Chapter8
│   ├── Example8_1_1
│   │   ├── Example8_1_1
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   │   ├── Example8_1_1.exe
│   │   │   │   ├── Example8_1_1.pdb
│   │   │   │   └── Example8_1_1.vshost.exe
│   │   │   ├── ChartStyle.cs
│   │   │   ├── Example8_1_1.csproj
│   │   │   ├── Form1.cs
│   │   │   ├── Form1.designer.cs
│   │   │   ├── Form1.resx
│   │   │   ├── LineStyle.cs
│   │   │   ├── Matrix3.cs
│   │   │   ├── obj
│   │   │   │   ├── Debug
│   │   │   │   │   ├── Example8_1_1.csproj.GenerateResource.Cache
│   │   │   │   │   ├── Example8_1_1.exe
│   │   │   │   │   ├── Example8_1_1.Form1.resources
│   │   │   │   │   ├── Example8_1_1.pdb
│   │   │   │   │   ├── Example8_1_1.Properties.Resources.resources
│   │   │   │   │   └── TempPE
│   │   │   │   └── Example8_1_1.csproj.FileListAbsolute.txt
│   │   │   ├── Point3.cs
│   │   │   ├── Program.cs
│   │   │   └── Properties
│   │   │   ├── AssemblyInfo.cs
│   │   │   ├── Resources.Designer.cs
│   │   │   ├── Resources.resx
│   │   │   ├── Settings.Designer.cs
│   │   │   └── Settings.settings
│   │   ├── Example8_1_1.sln
│   │   └── Example8_1_1.suo
│   ├── Example8_2_1
│   │   ├── Example8_2_1
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   │   ├── Example8_2_1.exe
│   │   │   │   ├── Example8_2_1.pdb
│   │   │   │   └── Example8_2_1.vshost.exe
│   │   │   ├── ChartStyle.cs
│   │   │   ├── DataSeries.cs
│   │   │   ├── DrawChart.cs
│   │   │   ├── Example8_2_1.csproj
│   │   │   ├── Form1.cs
│   │   │   ├── Form1.designer.cs
│   │   │   ├── Form1.resx
│   │   │   ├── LineStyle.cs
│   │   │   ├── Matrix3.cs
│   │   │   ├── obj
│   │   │   │   ├── Debug
│   │   │   │   │   ├── Example8_2_1.csproj.GenerateResource.Cache
│   │   │   │   │   ├── Example8_2_1.exe
│   │   │   │   │   ├── Example8_2_1.Form1.resources
│   │   │   │   │   ├── Example8_2_1.pdb
│   │   │   │   │   ├── Example8_2_1.Properties.Resources.resources
│   │   │   │   │   └── TempPE
│   │   │   │   └── Example8_2_1.csproj.FileListAbsolute.txt
│   │   │   ├── Point3.cs
│   │   │   ├── Program.cs
│   │   │   └── Properties
│   │   │   ├── AssemblyInfo.cs
│   │   │   ├── Resources.Designer.cs
│   │   │   ├── Resources.resx
│   │   │   ├── Settings.Designer.cs
│   │   │   └── Settings.settings
│   │   ├── Example8_2_1.sln
│   │   └── Example8_2_1.suo
│   ├── Example8_3_1
│   │   ├── Example8_3_1
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   │   ├── Example8_3_1.exe
│   │   │   │   ├── Example8_3_1.pdb
│   │   │   │   ├── Example8_3_1.vshost.exe
│   │   │   │   └── testingdata.txt
│   │   │   ├── ChartFunctions.cs
│   │   │   ├── ChartStyle2D.cs
│   │   │   ├── ChartStyle.cs
│   │   │   ├── ColorMap.cs
│   │   │   ├── DataSeries.cs
│   │   │   ├── DrawChart.cs
│   │   │   ├── Example8_3_1.csproj
│   │   │   ├── Form1.cs
│   │   │   ├── Form1.designer.cs
│   │   │   ├── Form1.resx
│   │   │   ├── LineStyle.cs
│   │   │   ├── Matrix3.cs
│   │   │   ├── obj
│   │   │   │   ├── Debug
│   │   │   │   │   ├── Example8_3_1.csproj.GenerateResource.Cache
│   │   │   │   │   ├── Example8_3_1.exe
│   │   │   │   │   ├── Example8_3_1.Form1.resources
│   │   │   │   │   ├── Example8_3_1.pdb
│   │   │   │   │   ├── Example8_3_1.Properties.Resources.resources
│   │   │   │   │   └── TempPE
│   │   │   │   │   └── Properties.Resources.Designer.cs.dll
│   │   │   │   └── Example8_3_1.csproj.FileListAbsolute.txt
│   │   │   ├── Point3.cs
│   │   │   ├── Point4.cs
│   │   │   ├── Program.cs
│   │   │   └── Properties
│   │   │   ├── AssemblyInfo.cs
│   │   │   ├── Resources.Designer.cs
│   │   │   ├── Resources.resx
│   │   │   ├── Settings.Designer.cs
│   │   │   └── Settings.settings
│   │   ├── Example8_3_1.sln
│   │   └── Example8_3_1.suo
│   ├── Example8_5_1
│   │   ├── Example8_5_1
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   │   ├── Example8_5_1.exe
│   │   │   │   ├── Example8_5_1.pdb
│   │   │   │   ├── Example8_5_1.vshost.exe
│   │   │   │   └── testingdata.txt
│   │   │   ├── ChartFunctions.cs
│   │   │   ├── ChartStyle2D.cs
│   │   │   ├── ChartStyle.cs
│   │   │   ├── ColorMap.cs
│   │   │   ├── DataSeries.cs
│   │   │   ├── DrawChart.cs
│   │   │   ├── Example8_5_1.csproj
│   │   │   ├── Form1.cs
│   │   │   ├── Form1.designer.cs
│   │   │   ├── Form1.resx
│   │   │   ├── LineStyle.cs
│   │   │   ├── Matrix3.cs
│   │   │   ├── obj
│   │   │   │   ├── Debug
│   │   │   │   │   ├── Example8_5_1.csproj.GenerateResource.Cache
│   │   │   │   │   ├── Example8_5_1.exe
│   │   │   │   │   ├── Example8_5_1.Form1.resources
│   │   │   │   │   ├── Example8_5_1.pdb
│   │   │   │   │   ├── Example8_5_1.Properties.Resources.resources
│   │   │   │   │   └── TempPE
│   │   │   │   └── Example8_5_1.csproj.FileListAbsolute.txt
│   │   │   ├── Point3.cs
│   │   │   ├── Point4.cs
│   │   │   ├── Program.cs
│   │   │   └── Properties
│   │   │   ├── AssemblyInfo.cs
│   │   │   ├── Resources.Designer.cs
│   │   │   ├── Resources.resx
│   │   │   ├── Settings.Designer.cs
│   │   │   └── Settings.settings
│   │   ├── Example8_5_1.sln
│   │   └── Example8_5_1.suo
│   ├── Example8_7_1
│   │   ├── Example8_7_1
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   │   ├── Example8_7_1.exe
│   │   │   │   ├── Example8_7_1.pdb
│   │   │   │   ├── Example8_7_1.vshost.exe
│   │   │   │   └── testingdata.txt
│   │   │   ├── ChartFunctions.cs
│   │   │   ├── ChartStyle2D.cs
│   │   │   ├── ChartStyle.cs
│   │   │   ├── ColorMap.cs
│   │   │   ├── DataSeries.cs
│   │   │   ├── DrawChart.cs
│   │   │   ├── Example8_7_1.csproj
│   │   │   ├── Form1.cs
│   │   │   ├── Form1.designer.cs
│   │   │   ├── Form1.resx
│   │   │   ├── LineStyle.cs
│   │   │   ├── Matrix3.cs
│   │   │   ├── obj
│   │   │   │   ├── Debug
│   │   │   │   │   ├── Example8_7_1.csproj.GenerateResource.Cache
│   │   │   │   │   ├── Example8_7_1.exe
│   │   │   │   │   ├── Example8_7_1.Form1.resources
│   │   │   │   │   ├── Example8_7_1.pdb
│   │   │   │   │   ├── Example8_7_1.Properties.Resources.resources
│   │   │   │   │   └── TempPE
│   │   │   │   └── Example8_7_1.csproj.FileListAbsolute.txt
│   │   │   ├── Point3.cs
│   │   │   ├── Point4.cs
│   │   │   ├── Program.cs
│   │   │   └── Properties
│   │   │   ├── AssemblyInfo.cs
│   │   │   ├── Resources.Designer.cs
│   │   │   ├── Resources.resx
│   │   │   ├── Settings.Designer.cs
│   │   │   └── Settings.settings
│   │   ├── Example8_7_1.sln
│   │   └── Example8_7_1.suo
│   ├── Example8_8_1
│   │   ├── Example8_8_1
│   │   │   ├── BarStyle.cs
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   │   ├── Example8_8_1.exe
│   │   │   │   ├── Example8_8_1.pdb
│   │   │   │   ├── Example8_8_1.vshost.exe
│   │   │   │   └── testingdata.txt
│   │   │   ├── ChartFunctions.cs
│   │   │   ├── ChartStyle2D.cs
│   │   │   ├── ChartStyle.cs
│   │   │   ├── ColorMap.cs
│   │   │   ├── DataSeries.cs
│   │   │   ├── DrawChart.cs
│   │   │   ├── Example8_8_1.csproj
│   │   │   ├── Form1.cs
│   │   │   ├── Form1.designer.cs
│   │   │   ├── Form1.resx
│   │   │   ├── LineStyle.cs
│   │   │   ├── Matrix3.cs
│   │   │   ├── obj
│   │   │   │   ├── Debug
│   │   │   │   │   ├── Example8_8_1.csproj.GenerateResource.Cache
│   │   │   │   │   ├── Example8_8_1.exe
│   │   │   │   │   ├── Example8_8_1.Form1.resources
│   │   │   │   │   ├── Example8_8_1.pdb
│   │   │   │   │   ├── Example8_8_1.Properties.Resources.resources
│   │   │   │   │   └── TempPE
│   │   │   │   └── Example8_8_1.csproj.FileListAbsolute.txt
│   │   │   ├── Point3.cs
│   │   │   ├── Point4.cs
│   │   │   ├── Program.cs
│   │   │   └── Properties
│   │   │   ├── AssemblyInfo.cs
│   │   │   ├── Resources.Designer.cs
│   │   │   ├── Resources.resx
│   │   │   ├── Settings.Designer.cs
│   │   │   └── Settings.settings
│   │   ├── Example8_8_1.sln
│   │   └── Example8_8_1.suo
│   └── Example8_9_1
│   ├── Example8_9_1
│   │   ├── BarStyle.cs
│   │   ├── bin
│   │   │   └── Debug
│   │   │   ├── Example8_9_1.exe
│   │   │   ├── Example8_9_1.pdb
│   │   │   └── Example8_9_1.vshost.exe
│   │   ├── ChartFunctions.cs
│   │   ├── ChartStyle2D.cs
│   │   ├── ChartStyle.cs
│   │   ├── ColorMap.cs
│   │   ├── DataSeries.cs
│   │   ├── DrawChart.cs
│   │   ├── Example8_9_1.csproj
│   │   ├── Form1.cs
│   │   ├── Form1.designer.cs
│   │   ├── Form1.resx
│   │   ├── LineStyle.cs
│   │   ├── Matrix3.cs
│   │   ├── obj
│   │   │   ├── Debug
│   │   │   │   ├── Example8_9_1.csproj.GenerateResource.Cache
│   │   │   │   ├── Example8_9_1.exe
│   │   │   │   ├── Example8_9_1.Form1.resources
│   │   │   │   ├── Example8_9_1.pdb
│   │   │   │   ├── Example8_9_1.Properties.Resources.resources
│   │   │   │   └── TempPE
│   │   │   └── Example8_9_1.csproj.FileListAbsolute.txt
│   │   ├── Point3.cs
│   │   ├── Point4.cs
│   │   ├── Program.cs
│   │   └── Properties
│   │   ├── AssemblyInfo.cs
│   │   ├── Resources.Designer.cs
│   │   ├── Resources.resx
│   │   ├── Settings.Designer.cs
│   │   └── Settings.settings
│   ├── Example8_9_1.sln
│   └── Example8_9_1.suo
├── Chapter9
│   ├── Example9_1_1
│   │   ├── Example9_1_1
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   │   ├── Example9_1_1.exe
│   │   │   │   ├── Example9_1_1.pdb
│   │   │   │   ├── Example9_1_1.vshost.exe
│   │   │   │   ├── Interop.Excel.dll
│   │   │   │   ├── Interop.Office.dll
│   │   │   │   └── Interop.VBIDE.dll
│   │   │   ├── Example9_1_1.csproj
│   │   │   ├── Form1.cs
│   │   │   ├── Form1.designer.cs
│   │   │   ├── Form1.resx
│   │   │   ├── obj
│   │   │   │   ├── Debug
│   │   │   │   │   ├── Example9_1_1.csproj.GenerateResource.Cache
│   │   │   │   │   ├── Example9_1_1.csproj.ResolveComReference.cache
│   │   │   │   │   ├── Example9_1_1.exe
│   │   │   │   │   ├── Example9_1_1.Form1.resources
│   │   │   │   │   ├── Example9_1_1.pdb
│   │   │   │   │   ├── Example9_1_1.Properties.Resources.resources
│   │   │   │   │   ├── Interop.Excel.dll
│   │   │   │   │   ├── Interop.Office.dll
│   │   │   │   │   ├── Interop.VBIDE.dll
│   │   │   │   │   └── TempPE
│   │   │   │   └── Example9_1_1.csproj.FileListAbsolute.txt
│   │   │   ├── Program.cs
│   │   │   └── Properties
│   │   │   ├── AssemblyInfo.cs
│   │   │   ├── Resources.Designer.cs
│   │   │   ├── Resources.resx
│   │   │   ├── Settings.Designer.cs
│   │   │   └── Settings.settings
│   │   ├── Example9_1_1.sln
│   │   └── Example9_1_1.suo
│   ├── Example9_2_1
│   │   ├── Example9_2_1
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   │   ├── Example9_2_1.exe
│   │   │   │   ├── Example9_2_1.pdb
│   │   │   │   ├── Example9_2_1.vshost.exe
│   │   │   │   ├── Interop.Excel.dll
│   │   │   │   ├── Interop.Office.dll
│   │   │   │   └── Interop.VBIDE.dll
│   │   │   ├── Example9_2_1.csproj
│   │   │   ├── Form1.cs
│   │   │   ├── Form1.designer.cs
│   │   │   ├── Form1.resx
│   │   │   ├── obj
│   │   │   │   ├── Debug
│   │   │   │   │   ├── Example9_2_1.csproj.GenerateResource.Cache
│   │   │   │   │   ├── Example9_2_1.csproj.ResolveComReference.cache
│   │   │   │   │   ├── Example9_2_1.exe
│   │   │   │   │   ├── Example9_2_1.Form1.resources
│   │   │   │   │   ├── Example9_2_1.pdb
│   │   │   │   │   ├── Example9_2_1.Properties.Resources.resources
│   │   │   │   │   ├── Interop.Excel.dll
│   │   │   │   │   ├── Interop.Office.dll
│   │   │   │   │   ├── Interop.VBIDE.dll
│   │   │   │   │   └── TempPE
│   │   │   │   └── Example9_2_1.csproj.FileListAbsolute.txt
│   │   │   ├── Program.cs
│   │   │   └── Properties
│   │   │   ├── AssemblyInfo.cs
│   │   │   ├── Resources.Designer.cs
│   │   │   ├── Resources.resx
│   │   │   ├── Settings.Designer.cs
│   │   │   └── Settings.settings
│   │   ├── Example9_2_1.sln
│   │   └── Example9_2_1.suo
│   ├── Example9_2_2
│   │   ├── Example9_2_2
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   │   ├── Example9_2_2.exe
│   │   │   │   ├── Example9_2_2.pdb
│   │   │   │   ├── Example9_2_2.vshost.exe
│   │   │   │   ├── Interop.Excel.dll
│   │   │   │   ├── Interop.Office.dll
│   │   │   │   └── Interop.VBIDE.dll
│   │   │   ├── Example9_2_2.csproj
│   │   │   ├── Form1.cs
│   │   │   ├── Form1.designer.cs
│   │   │   ├── Form1.resx
│   │   │   ├── obj
│   │   │   │   ├── Debug
│   │   │   │   │   ├── Example9_2_2.csproj.GenerateResource.Cache
│   │   │   │   │   ├── Example9_2_2.csproj.ResolveComReference.cache
│   │   │   │   │   ├── Example9_2_2.exe
│   │   │   │   │   ├── Example9_2_2.Form1.resources
│   │   │   │   │   ├── Example9_2_2.pdb
│   │   │   │   │   ├── Example9_2_2.Properties.Resources.resources
│   │   │   │   │   ├── Interop.Excel.dll
│   │   │   │   │   ├── Interop.Office.dll
│   │   │   │   │   ├── Interop.VBIDE.dll
│   │   │   │   │   └── TempPE
│   │   │   │   └── Example9_2_2.csproj.FileListAbsolute.txt
│   │   │   ├── Program.cs
│   │   │   └── Properties
│   │   │   ├── AssemblyInfo.cs
│   │   │   ├── Resources.Designer.cs
│   │   │   ├── Resources.resx
│   │   │   ├── Settings.Designer.cs
│   │   │   └── Settings.settings
│   │   ├── Example9_2_2.sln
│   │   └── Example9_2_2.suo
│   ├── Example9_3_1
│   │   ├── Example9_3_1
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   │   ├── Example9_3_1.exe
│   │   │   │   ├── Example9_3_1.pdb
│   │   │   │   ├── Example9_3_1.vshost.exe
│   │   │   │   ├── Interop.Excel.dll
│   │   │   │   ├── Interop.Office.dll
│   │   │   │   └── Interop.VBIDE.dll
│   │   │   ├── Example9_3_1.csproj
│   │   │   ├── Form1.cs
│   │   │   ├── Form1.designer.cs
│   │   │   ├── Form1.resx
│   │   │   ├── obj
│   │   │   │   ├── Debug
│   │   │   │   │   ├── Example9_3_1.csproj.GenerateResource.Cache
│   │   │   │   │   ├── Example9_3_1.csproj.ResolveComReference.cache
│   │   │   │   │   ├── Example9_3_1.exe
│   │   │   │   │   ├── Example9_3_1.Form1.resources
│   │   │   │   │   ├── Example9_3_1.pdb
│   │   │   │   │   ├── Example9_3_1.Properties.Resources.resources
│   │   │   │   │   ├── Interop.Excel.dll
│   │   │   │   │   ├── Interop.Office.dll
│   │   │   │   │   ├── Interop.VBIDE.dll
│   │   │   │   │   └── TempPE
│   │   │   │   └── Example9_3_1.csproj.FileListAbsolute.txt
│   │   │   ├── Program.cs
│   │   │   └── Properties
│   │   │   ├── AssemblyInfo.cs
│   │   │   ├── Resources.Designer.cs
│   │   │   ├── Resources.resx
│   │   │   ├── Settings.Designer.cs
│   │   │   └── Settings.settings
│   │   ├── Example9_3_1.sln
│   │   └── Example9_3_1.suo
│   ├── Example9_3_2
│   │   ├── Example9_3_2
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   │   ├── Example9_3_2.exe
│   │   │   │   ├── Example9_3_2.pdb
│   │   │   │   ├── Example9_3_2.vshost.exe
│   │   │   │   ├── Interop.Excel.dll
│   │   │   │   ├── Interop.Office.dll
│   │   │   │   └── Interop.VBIDE.dll
│   │   │   ├── Example9_3_2.csproj
│   │   │   ├── Form1.cs
│   │   │   ├── Form1.designer.cs
│   │   │   ├── Form1.resx
│   │   │   ├── obj
│   │   │   │   ├── Debug
│   │   │   │   │   ├── Example9_3_2.csproj.GenerateResource.Cache
│   │   │   │   │   ├── Example9_3_2.csproj.ResolveComReference.cache
│   │   │   │   │   ├── Example9_3_2.exe
│   │   │   │   │   ├── Example9_3_2.Form1.resources
│   │   │   │   │   ├── Example9_3_2.pdb
│   │   │   │   │   ├── Example9_3_2.Properties.Resources.resources
│   │   │   │   │   ├── Interop.Excel.dll
│   │   │   │   │   ├── Interop.Office.dll
│   │   │   │   │   ├── Interop.VBIDE.dll
│   │   │   │   │   └── TempPE
│   │   │   │   └── Example9_3_2.csproj.FileListAbsolute.txt
│   │   │   ├── Program.cs
│   │   │   └── Properties
│   │   │   ├── AssemblyInfo.cs
│   │   │   ├── Resources.Designer.cs
│   │   │   ├── Resources.resx
│   │   │   ├── Settings.Designer.cs
│   │   │   └── Settings.settings
│   │   ├── Example9_3_2.sln
│   │   └── Example9_3_2.suo
│   ├── Example9_3_3
│   │   ├── Example9_3_3
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   │   ├── Example9_3_3.exe
│   │   │   │   ├── Example9_3_3.pdb
│   │   │   │   ├── Example9_3_3.vshost.exe
│   │   │   │   ├── Interop.Excel.dll
│   │   │   │   ├── Interop.Office.dll
│   │   │   │   ├── Interop.VBIDE.dll
│   │   │   │   └── Test.txt
│   │   │   ├── Example9_3_3.csproj
│   │   │   ├── Form1.cs
│   │   │   ├── Form1.designer.cs
│   │   │   ├── Form1.resx
│   │   │   ├── obj
│   │   │   │   ├── Debug
│   │   │   │   │   ├── Example9_3_3.csproj.GenerateResource.Cache
│   │   │   │   │   ├── Example9_3_3.csproj.ResolveComReference.cache
│   │   │   │   │   ├── Example9_3_3.exe
│   │   │   │   │   ├── Example9_3_3.Form1.resources
│   │   │   │   │   ├── Example9_3_3.pdb
│   │   │   │   │   ├── Example9_3_3.Properties.Resources.resources
│   │   │   │   │   ├── Interop.Excel.dll
│   │   │   │   │   ├── Interop.Office.dll
│   │   │   │   │   ├── Interop.VBIDE.dll
│   │   │   │   │   └── TempPE
│   │   │   │   └── Example9_3_3.csproj.FileListAbsolute.txt
│   │   │   ├── Program.cs
│   │   │   └── Properties
│   │   │   ├── AssemblyInfo.cs
│   │   │   ├── Resources.Designer.cs
│   │   │   ├── Resources.resx
│   │   │   ├── Settings.Designer.cs
│   │   │   └── Settings.settings
│   │   ├── Example9_3_3.sln
│   │   └── Example9_3_3.suo
│   ├── Example9_3_4
│   │   ├── Example9_3_4
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   │   ├── Example9_3_4.exe
│   │   │   │   ├── Example9_3_4.pdb
│   │   │   │   ├── Example9_3_4.vshost.exe
│   │   │   │   ├── Interop.Excel.dll
│   │   │   │   ├── Interop.Office.dll
│   │   │   │   └── Interop.VBIDE.dll
│   │   │   ├── Example9_3_4.csproj
│   │   │   ├── Form1.cs
│   │   │   ├── Form1.designer.cs
│   │   │   ├── Form1.resx
│   │   │   ├── obj
│   │   │   │   ├── Debug
│   │   │   │   │   ├── Example9_3_4.csproj.GenerateResource.Cache
│   │   │   │   │   ├── Example9_3_4.csproj.ResolveComReference.cache
│   │   │   │   │   ├── Example9_3_4.exe
│   │   │   │   │   ├── Example9_3_4.Form1.resources
│   │   │   │   │   ├── Example9_3_4.pdb
│   │   │   │   │   ├── Example9_3_4.Properties.Resources.resources
│   │   │   │   │   ├── Interop.Excel.dll
│   │   │   │   │   ├── Interop.Office.dll
│   │   │   │   │   ├── Interop.VBIDE.dll
│   │   │   │   │   └── TempPE
│   │   │   │   └── Example9_3_4.csproj.FileListAbsolute.txt
│   │   │   ├── Program.cs
│   │   │   └── Properties
│   │   │   ├── AssemblyInfo.cs
│   │   │   ├── Resources.Designer.cs
│   │   │   ├── Resources.resx
│   │   │   ├── Settings.Designer.cs
│   │   │   └── Settings.settings
│   │   ├── Example9_3_4.sln
│   │   └── Example9_3_4.suo
│   ├── Example9_3_5
│   │   ├── Example9_3_5
│   │   │   ├── bin
│   │   │   │   └── Debug
│   │   │   │   ├── Example9_3_5.exe
│   │   │   │   ├── Example9_3_5.pdb
│   │   │   │   ├── Example9_3_5.vshost.exe
│   │   │   │   ├── Interop.Excel.dll
│   │   │   │   ├── Interop.Office.dll
│   │   │   │   └── Interop.VBIDE.dll
│   │   │   ├── ColorMap.cs
│   │   │   ├── Example9_3_5.csproj
│   │   │   ├── Form1.cs
│   │   │   ├── Form1.designer.cs
│   │   │   ├── Form1.resx
│   │   │   ├── obj
│   │   │   │   ├── Debug
│   │   │   │   │   ├── Example9_3_5.csproj.GenerateResource.Cache
│   │   │   │   │   ├── Example9_3_5.csproj.ResolveComReference.cache
│   │   │   │   │   ├── Example9_3_5.exe
│   │   │   │   │   ├── Example9_3_5.Form1.resources
│   │   │   │   │   ├── Example9_3_5.pdb
│   │   │   │   │   ├── Example9_3_5.Properties.Resources.resources
│   │   │   │   │   ├── Interop.Excel.dll
│   │   │   │   │   ├── Interop.Office.dll
│   │   │   │   │   ├── Interop.VBIDE.dll
│   │   │   │   │   └── TempPE
│   │   │   │   └── Example9_3_5.csproj.FileListAbsolute.txt
│   │   │   ├── Program.cs
│   │   │   └── Properties
│   │   │   ├── AssemblyInfo.cs
│   │   │   ├── Resources.Designer.cs
│   │   │   ├── Resources.resx
│   │   │   ├── Settings.Designer.cs
│   │   │   └── Settings.settings
│   │   ├── Example9_3_5.sln
│   │   └── Example9_3_5.suo
│   └── Example9_4_1
│   ├── Example9_4_1
│   │   ├── bin
│   │   │   └── Debug
│   │   │   ├── Example9_4_1.exe
│   │   │   ├── Example9_4_1.gif
│   │   │   ├── Example9_4_1.pdb
│   │   │   ├── Example9_4_1.vshost.exe
│   │   │   ├── Example9_4_1.xls
│   │   │   ├── Interop.Excel.dll
│   │   │   ├── Interop.Office.dll
│   │   │   └── Interop.VBIDE.dll
│   │   ├── Example9_4_1.csproj
│   │   ├── Example9_4_1.gif
│   │   ├── Form1.cs
│   │   ├── Form1.designer.cs
│   │   ├── Form1.resx
│   │   ├── obj
│   │   │   ├── Debug
│   │   │   │   ├── Example9_4_1.csproj.GenerateResource.Cache
│   │   │   │   ├── Example9_4_1.csproj.ResolveComReference.cache
│   │   │   │   ├── Example9_4_1.exe
│   │   │   │   ├── Example9_4_1.Form1.resources
│   │   │   │   ├── Example9_4_1.pdb
│   │   │   │   ├── Example9_4_1.Properties.Resources.resources
│   │   │   │   ├── Interop.Excel.dll
│   │   │   │   ├── Interop.Office.dll
│   │   │   │   ├── Interop.VBIDE.dll
│   │   │   │   └── TempPE
│   │   │   └── Example9_4_1.csproj.FileListAbsolute.txt
│   │   ├── Program.cs
│   │   └── Properties
│   │   ├── AssemblyInfo.cs
│   │   ├── Resources.Designer.cs
│   │   ├── Resources.resx
│   │   ├── Settings.Designer.cs
│   │   └── Settings.settings
│   ├── Example9_4_1.sln
│   └── Example9_4_1.suo
├── command.ini
└── Thumbs.db

522 directories, 2480 files

标签:

实例下载地址

C#二维三维图形绘制工程实例宝典光盘.rar

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警