zoukankan      html  css  js  c++  java
  • TeeChart经验总结 9.Series之4:Pie&Others

    TeeChart自带的PieDemo就很能说明问题.

    Explode biggest对应 Pie.ExplodeBiggest; 将最大的一块slice推出.
    Total Angle对应 Pie.AngleSize; 所有slice的总角度.
    Dark Border对应 Pie.DarkPen;每一块slice的边界线.
    Dark 3D对应 Pie.Dark3D;slice侧边的阴影.
    Patterns对应 Pie.UsePatterns;是否给slice使用图案.
    Multiple Pies对应 Pie.MultiPie: TMultiPie=(mpAutomatic, mpDisabled); 如果Chart内有多个Pie,如何显示.

    Gourp Slices.Style对应 Pie.OtherSlice.Style;TPieOtherStyle=(poNone, poBelowPercent, poBelowValue);
    Gourp Slices.Value对应 Pie.OtherSlice.Value
    Gourp Slices.Label对应 Pie.OtherSlice.Text
    Gourp Slices.Legend对应 Pie.OtherSlice.Legend
    这些属性是为了使Value低于总百分比(poBelowPercent)或者低于数值(poBelowValue)这些数值之和,显示为Label的新slice.
    比如处理一些较小的值,显示为Other.

    Color Each slice对应 Pie.ColorEachPoint
    Color palette对应 Pie.ParentChart的ColorPaletteIndex
    Color对应 Pie.SeriesColor

    Auto Mark Position对应 Pie.AutoMarkPosition;自动设置Mark的位置
    Vertical center callout对应 Pie.PieMarks.VertCenter;垂直居中显示
    Callout Leg size对应 Pie.PieMarks.LegSize;Mark脚线的长度

    (以下属性和TCircledSeries通用)
    Circled对应 Pie.Circled;显示成圆(而不是椭圆)
    3 Dimensions对应 Pie.ParentChart.View3D
    Rotation对应 Pie.RotationAngle;旋转角度

    Radius.Horizontal对应 Pie.CustomXRadius 水平半径
    Radius.Vertical对应 Pie.CustomYRadius 垂直半径
    (以上属性和TCircledSeries通用)

    Point: 离线并不连接的点.常用属性之前都介绍过.
    Fast Line:简化版的Line,取消了3D显示,取消了Stack等功能.
    Horizontal Line: XY互换的Line.
    Horizontal Area: XY互换的Area.
    Bubble: 泡泡.其实感觉更像是立体彩色版本的Point.
    Gantt:甘特图.

    Sharp:图形.一些常用的图形.

    Extended:扩展.

    Financial:金融.

    Stats:统计.

    3D:

    Gauges:仪表.

    Other:

    Maps:地图.

    其他还有若干个Function.不贴图了.

  • 相关阅读:
    SqlBulkCopy实现大容量数据快速插入数据库中
    防查询语句注入漏洞攻击
    wpf中数据绑定(Datacontext)的应用
    WPF中StackPanel的使用方法
    可空类型的使用《二》
    关于可空数据类型的介绍
    C# 之泛型详解
    C# 之String以及浅拷贝与深拷贝
    C# 小软件部分(二)
    MVC 之HTML辅助方法
  • 原文地址:https://www.cnblogs.com/solokey/p/2118689.html
Copyright © 2011-2022 走看看