实例介绍
高速绘图(轴固定时),允许快速绘制数据 无限数量的数据序列(内存是限制) 每个数据序列的数据量不受限制 支持线图,点图,平面图,柱状图,K线图 和甘特图系列 最多四个轴(左,下,右和上轴) 标准轴,对数轴或日期/时间轴 自动伸缩的坐标轴, 翻转的坐标轴(相互独立) 轴标签 点标签 平滑的曲线 网格 图例和标题 交互性(在控件中发生特定事件时的通知) 支持手动缩放和鼠标平移 支持鼠标指针 支持轴上的滚动条 高度可定制(颜色,标题,标签,边缘,字体等) 支持UNICODE 支持打印和保存到图像文件
【实例截图】
【核心代码】
ChartingControl
└── Charting Control
├── Backup
│ └── ChartDemo.sln
├── ChartCtrl
│ ├── ChartAxis.cpp
│ ├── ChartAxis.h
│ ├── ChartAxisLabel.cpp
│ ├── ChartAxisLabel.h
│ ├── ChartBalloonLabel.h
│ ├── ChartBalloonLabel.inl
│ ├── ChartBarSerie.cpp
│ ├── ChartBarSerie.h
│ ├── ChartCandlestickSerie.cpp
│ ├── ChartCandlestickSerie.h
│ ├── ChartCrossHairCursor.cpp
│ ├── ChartCrossHairCursor.h
│ ├── ChartCtrl.cpp
│ ├── ChartCtrl.h
│ ├── ChartCtrl_source.zip
│ ├── ChartCursor.cpp
│ ├── ChartCursor.h
│ ├── ChartDateTimeAxis.cpp
│ ├── ChartDateTimeAxis.h
│ ├── ChartDragLineCursor.cpp
│ ├── ChartDragLineCursor.h
│ ├── ChartFont.cpp
│ ├── ChartFont.h
│ ├── ChartGanttSerie.cpp
│ ├── ChartGanttSerie.h
│ ├── ChartGradient.cpp
│ ├── ChartGradient.h
│ ├── ChartGrid.cpp
│ ├── ChartGrid.h
│ ├── ChartLabel.h
│ ├── ChartLabel.inl
│ ├── ChartLegend.cpp
│ ├── ChartLegend.h
│ ├── ChartLineSerie.cpp
│ ├── ChartLineSerie.h
│ ├── ChartLogarithmicAxis.cpp
│ ├── ChartLogarithmicAxis.h
│ ├── ChartMouseListener.h
│ ├── ChartPointsArray.h
│ ├── ChartPointsArray.inl
│ ├── ChartPointsSerie.cpp
│ ├── ChartPointsSerie.h
│ ├── ChartScrollBar.cpp
│ ├── ChartScrollBar.h
│ ├── ChartSerie.cpp
│ ├── ChartSerie.h
│ ├── ChartSerieBase.h
│ ├── ChartSerieBase.inl
│ ├── ChartSeriesMouseListener.h
│ ├── ChartStandardAxis.cpp
│ ├── ChartStandardAxis.h
│ ├── ChartString.h
│ ├── ChartSurfaceSerie.cpp
│ ├── ChartSurfaceSerie.h
│ ├── ChartTitle.cpp
│ ├── ChartTitle.h
│ ├── ChartXYSerie.cpp
│ ├── ChartXYSerie.h
│ └── PointsOrdering.h
├── ChartDemo.aps
├── ChartDemo.cpp
├── ChartDemo.dsp
├── ChartDemo.dsw
├── ChartDemo.h
├── ChartDemo.rc
├── ChartDemo.sdf
├── ChartDemo.sln
├── ChartDemo.v12.suo
├── ChartDemo.vcproj
├── ChartDemo.vcxproj
├── ChartDemo.vcxproj.filters
├── ChartDemoDlg.cpp
├── ChartDemoDlg.h
├── ColourPicker
│ ├── ColourPicker.cpp
│ ├── ColourPicker.h
│ ├── ColourPopup.cpp
│ └── ColourPopup.h
├── Debug
│ ├── ChartAxis.obj
│ ├── ChartAxis.sbr
│ ├── ChartAxisLabel.obj
│ ├── ChartAxisLabel.sbr
│ ├── ChartBarSerie.obj
│ ├── ChartBarSerie.sbr
│ ├── ChartCandlestickSerie.obj
│ ├── ChartCandlestickSerie.sbr
│ ├── ChartCrossHairCursor.obj
│ ├── ChartCrossHairCursor.sbr
│ ├── ChartCtrl.obj
│ ├── ChartCtrl.sbr
│ ├── ChartCursor.obj
│ ├── ChartCursor.sbr
│ ├── ChartDateTimeAxis.obj
│ ├── ChartDateTimeAxis.sbr
│ ├── ChartDemo.bsc
│ ├── ChartDemo.exe
│ ├── ChartDemo.ilk
│ ├── ChartDemo.log
│ ├── ChartDemo.obj
│ ├── ChartDemo.pch
│ ├── ChartDemo.pdb
│ ├── ChartDemo.res
│ ├── ChartDemo.sbr
│ ├── ChartDemo.tlog
│ │ ├── BscMake.command.1.tlog
│ │ ├── CL.read.1.tlog
│ │ ├── CL.write.1.tlog
│ │ ├── ChartDemo.lastbuildstate
│ │ ├── bscmake.read.1.tlog
│ │ ├── bscmake.write.1.tlog
│ │ ├── cl.command.1.tlog
│ │ ├── link.command.1.tlog
│ │ ├── link.read.1.tlog
│ │ ├── link.write.1.tlog
│ │ ├── rc.command.1.tlog
│ │ ├── rc.read.1.tlog
│ │ └── rc.write.1.tlog
│ ├── ChartDemoDlg.obj
│ ├── ChartDemoDlg.sbr
│ ├── ChartDragLineCursor.obj
│ ├── ChartDragLineCursor.sbr
│ ├── ChartFont.obj
│ ├── ChartFont.sbr
│ ├── ChartGanttSerie.obj
│ ├── ChartGanttSerie.sbr
│ ├── ChartGradient.obj
│ ├── ChartGradient.sbr
│ ├── ChartGrid.obj
│ ├── ChartGrid.sbr
│ ├── ChartLegend.obj
│ ├── ChartLegend.sbr
│ ├── ChartLineSerie.obj
│ ├── ChartLineSerie.sbr
│ ├── ChartLogarithmicAxis.obj
│ ├── ChartLogarithmicAxis.sbr
│ ├── ChartPointsSerie.obj
│ ├── ChartPointsSerie.sbr
│ ├── ChartScrollBar.obj
│ ├── ChartScrollBar.sbr
│ ├── ChartSerie.obj
│ ├── ChartSerie.sbr
│ ├── ChartStandardAxis.obj
│ ├── ChartStandardAxis.sbr
│ ├── ChartSurfaceSerie.obj
│ ├── ChartSurfaceSerie.sbr
│ ├── ChartTitle.obj
│ ├── ChartTitle.sbr
│ ├── ChartXYSerie.obj
│ ├── ChartXYSerie.sbr
│ ├── ColourPicker.obj
│ ├── ColourPicker.sbr
│ ├── ColourPopup.obj
│ ├── ColourPopup.sbr
│ ├── LinePropDialog.obj
│ ├── LinePropDialog.sbr
│ ├── PointsPropDialog.obj
│ ├── PointsPropDialog.sbr
│ ├── SeriesPropDlg.obj
│ ├── SeriesPropDlg.sbr
│ ├── StdAfx.obj
│ ├── StdAfx.sbr
│ ├── SurfacePropDialog.obj
│ ├── SurfacePropDialog.sbr
│ ├── vc120.idb
│ └── vc120.pdb
├── Doc
│ └── html
│ ├── _chart_axis_8h-source.html
│ ├── _chart_axis_label_8h-source.html
│ ├── _chart_axis_old_8h-source.html
│ ├── _chart_balloon_label_8h-source.html
│ ├── _chart_bar_serie_8h-source.html
│ ├── _chart_candlestick_serie_8h-source.html
│ ├── _chart_cross_hair_cursor_8h-source.html
│ ├── _chart_ctrl_8h-source.html
│ ├── _chart_cursor_8h-source.html
│ ├── _chart_date_time_axis_8h-source.html
│ ├── _chart_demo_8h-source.html
│ ├── _chart_demo_dlg_8h-source.html
│ ├── _chart_drag_line_cursor_8h-source.html
│ ├── _chart_font_8h-source.html
│ ├── _chart_gantt_serie_8h-source.html
│ ├── _chart_gradient_8h-source.html
│ ├── _chart_grid_8h-source.html
│ ├── _chart_label_8h-source.html
│ ├── _chart_legend_8h-source.html
│ ├── _chart_line_serie_8h-source.html
│ ├── _chart_logarithmic_axis_8h-source.html
│ ├── _chart_mouse_listener_8h-source.html
│ ├── _chart_object_8h-source.html
│ ├── _chart_point_label_8h-source.html
│ ├── _chart_points_array_8h-source.html
│ ├── _chart_points_serie_8h-source.html
│ ├── _chart_scroll_bar_8h-source.html
│ ├── _chart_serie_8h-source.html
│ ├── _chart_serie_base_8h-source.html
│ ├── _chart_series_mouse_listener_8h-source.html
│ ├── _chart_standard_axis_8h-source.html
│ ├── _chart_string_8h-source.html
│ ├── _chart_surface_serie_8h-source.html
│ ├── _chart_title_8h-source.html
│ ├── _chart_x_y_serie_8h-source.html
│ ├── _colour_picker_8h-source.html
│ ├── _colour_popup_8h-source.html
│ ├── _line_prop_dialog_8h-source.html
│ ├── _points_ordering_8h-source.html
│ ├── _points_prop_dialog_8h-source.html
│ ├── _series_prop_dlg_8h-source.html
│ ├── _std_afx_8h-source.html
│ ├── _surface_prop_dialog_8h-source.html
│ ├── annotated.html
│ ├── class_c_chart_axis-members.html
│ ├── class_c_chart_axis.html
│ ├── class_c_chart_axis.png
│ ├── class_c_chart_axis_label-members.html
│ ├── class_c_chart_axis_label.html
│ ├── class_c_chart_balloon_label-members.html
│ ├── class_c_chart_balloon_label.html
│ ├── class_c_chart_balloon_label.png
│ ├── class_c_chart_bar_serie-members.html
│ ├── class_c_chart_bar_serie.html
│ ├── class_c_chart_bar_serie.png
│ ├── class_c_chart_candlestick_serie-members.html
│ ├── class_c_chart_candlestick_serie.html
│ ├── class_c_chart_candlestick_serie.png
│ ├── class_c_chart_cross_hair_cursor-members.html
│ ├── class_c_chart_cross_hair_cursor.html
│ ├── class_c_chart_cross_hair_cursor.png
│ ├── class_c_chart_ctrl-members.html
│ ├── class_c_chart_ctrl.html
│ ├── class_c_chart_cursor-members.html
│ ├── class_c_chart_cursor.html
│ ├── class_c_chart_cursor.png
│ ├── class_c_chart_cursor_listener-members.html
│ ├── class_c_chart_cursor_listener.html
│ ├── class_c_chart_date_time_axis-members.html
│ ├── class_c_chart_date_time_axis.html
│ ├── class_c_chart_date_time_axis.png
│ ├── class_c_chart_drag_line_cursor-members.html
│ ├── class_c_chart_drag_line_cursor.html
│ ├── class_c_chart_drag_line_cursor.png
│ ├── class_c_chart_font-members.html
│ ├── class_c_chart_font.html
│ ├── class_c_chart_gantt_serie-members.html
│ ├── class_c_chart_gantt_serie.html
│ ├── class_c_chart_gantt_serie.png
│ ├── class_c_chart_gradient-members.html
│ ├── class_c_chart_gradient.html
│ ├── class_c_chart_grid-members.html
│ ├── class_c_chart_grid.html
│ ├── class_c_chart_label-members.html
│ ├── class_c_chart_label.html
│ ├── class_c_chart_label.png
│ ├── class_c_chart_label_provider-members.html
│ ├── class_c_chart_label_provider.html
│ ├── class_c_chart_legend-members.html
│ ├── class_c_chart_legend.html
│ ├── class_c_chart_line_serie-members.html
│ ├── class_c_chart_line_serie.html
│ ├── class_c_chart_line_serie.png
│ ├── class_c_chart_logarithmic_axis-members.html
│ ├── class_c_chart_logarithmic_axis.html
│ ├── class_c_chart_logarithmic_axis.png
│ ├── class_c_chart_mouse_listener-members.html
│ ├── class_c_chart_mouse_listener.html
│ ├── class_c_chart_points_array-members.html
│ ├── class_c_chart_points_array.html
│ ├── class_c_chart_points_serie-members.html
│ ├── class_c_chart_points_serie.html
│ ├── class_c_chart_points_serie.png
│ ├── class_c_chart_scroll_bar-members.html
│ ├── class_c_chart_scroll_bar.html
│ ├── class_c_chart_serie-members.html
│ ├── class_c_chart_serie.html
│ ├── class_c_chart_serie.png
│ ├── class_c_chart_serie_base-members.html
│ ├── class_c_chart_serie_base.html
│ ├── class_c_chart_serie_base.png
│ ├── class_c_chart_series_mouse_listener-members.html
│ ├── class_c_chart_series_mouse_listener.html
│ ├── class_c_chart_standard_axis-members.html
│ ├── class_c_chart_standard_axis.html
│ ├── class_c_chart_standard_axis.png
│ ├── class_c_chart_surface_serie-members.html
│ ├── class_c_chart_surface_serie.html
│ ├── class_c_chart_surface_serie.png
│ ├── class_c_chart_title-members.html
│ ├── class_c_chart_title.html
│ ├── class_c_chart_x_y_serie-members.html
│ ├── class_c_chart_x_y_serie.html
│ ├── class_c_chart_x_y_serie.png
│ ├── classes.html
│ ├── deprecated.html
│ ├── doxygen.css
│ ├── doxygen.png
│ ├── files.html
│ ├── functions.html
│ ├── functions_0x63.html
│ ├── functions_0x64.html
│ ├── functions_0x65.html
│ ├── functions_0x66.html
│ ├── functions_0x67.html
│ ├── functions_0x68.html
│ ├── functions_0x69.html
│ ├── functions_0x6c.html
│ ├── functions_0x6d.html
│ ├── functions_0x6e.html
│ ├── functions_0x6f.html
│ ├── functions_0x70.html
│ ├── functions_0x72.html
│ ├── functions_0x73.html
│ ├── functions_0x74.html
│ ├── functions_0x75.html
│ ├── functions_0x76.html
│ ├── functions_0x78.html
│ ├── functions_0x79.html
│ ├── functions_0x7e.html
│ ├── functions_enum.html
│ ├── functions_eval.html
│ ├── functions_func.html
│ ├── functions_func_0x63.html
│ ├── functions_func_0x64.html
│ ├── functions_func_0x65.html
│ ├── functions_func_0x67.html
│ ├── functions_func_0x69.html
│ ├── functions_func_0x6e.html
│ ├── functions_func_0x6f.html
│ ├── functions_func_0x70.html
│ ├── functions_func_0x72.html
│ ├── functions_func_0x73.html
│ ├── functions_func_0x75.html
│ ├── functions_func_0x76.html
│ ├── functions_func_0x78.html
│ ├── functions_func_0x79.html
│ ├── functions_func_0x7e.html
│ ├── functions_vars.html
│ ├── hierarchy.html
│ ├── index.html
│ ├── pages.html
│ ├── resource_8h-source.html
│ ├── struct_c_chart_points_array_1_1_s_chart_point-members.html
│ ├── struct_c_chart_points_array_1_1_s_chart_point.html
│ ├── struct_s_chart_candlestick_point-members.html
│ ├── struct_s_chart_candlestick_point.html
│ ├── struct_s_chart_gantt_point-members.html
│ ├── struct_s_chart_gantt_point.html
│ ├── struct_s_chart_x_y_point-members.html
│ ├── struct_s_chart_x_y_point.html
│ ├── tab_b.gif
│ ├── tab_l.gif
│ ├── tab_r.gif
│ └── tabs.css
├── LinePropDialog.cpp
├── LinePropDialog.h
├── PointsPropDialog.cpp
├── PointsPropDialog.h
├── SeriesPropDlg.cpp
├── SeriesPropDlg.h
├── StdAfx.cpp
├── StdAfx.h
├── SurfacePropDialog.cpp
├── SurfacePropDialog.h
├── UpgradeLog.htm
├── ipch
│ └── chartdemo-d0afb6b
│ └── debug
│ └── chartdemo-b12df680.ipch
├── res
│ ├── ChartDemo.ico
│ └── ChartDemo.rc2
└── resource.h
12 directories, 364 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论