制作Excel图表一直是个难题。因为其类型、格式、相关图形也很多,所以在使用过程中可能会有些尴尬。(大卫亚设)。
图表对象
本节简要介绍了如何使用VBA代码设置和返回数据表中的系列值。
必须先导入Chart对象。如上一节所述,Chart对象表示图表。
一个图表包含很多图片和文本,下面是对这些图片和文本的梳理。(莎士比亚)。
从图表中提取年龄和名称以创建表,如下图所示。
代码
可以关注代码,了解代码。
Option Explicit
Private Sub GetSeries()
Dim xChart As Object
返回到“Set xChart=T(1)”图表工作表
Dim I As Integer、n As Integer
N=xC '返回系列总数
For I=1 ~ n
范围(' B6 ')。offset (I,0)=xc (I)。name
Next I
Dim xchartobject as object、xseries as object
N=xC
If n=1 Then
For I=1 ~ n
Set xSeries=xC(i)
范围(' B6 ')。offset (I-1、1)。value=xseries.name
Next I
End If
XSeries。Select
Dim x As Variant、xArr()
XArr=xSeries。“XValues”返回x轴值的数组
I=1
For Each x In xArr
范围(' B6 ')。offset (I,0)。value=xarr (I)
I=I 1
Next x
XArr=xSeries。“Values”返回系列值的数组
I=1
For Each x In xArr
范围(' B6 ')。offset (I,1)。value=xarr (I)
I=I 1
Next x
End Sub
密钥代码:
Set xChart=T(1)'返回图表工作表Set xSeries=xC(1)'返回第一个系列对象xArr=xSeries。XValues' x轴值数组xarr=xseries返回221、1111)'设置系列值xseries。XValues=Array(“名称1”、“名称2”、“名称3”)'设置x轴系列值Series对象方法和属性
方法
属性
应用DataLabels
Application
ClearFormats
ApplyPictToEnd
Copy
ApplyPictToFront
DataLabels
ApplyPictToSides
Delete
Axis集团
ErrorBar
华沙
Paste
BubbleSizes
Points
ChartType
Select
Creator
Trendlines
ErrorBars
Explosion
Format
方程式
FormulaLocal
FormulaR1C1
一级方程式R1 C1本地
GeoMappingLevel
GeoProjectionType
Has3DEffect
HasDataLabels
HasErrorBars
HasLeaderLines
InvertColor
InvertColorIndex
InvertIfNegative
IsFiltered
LeaderLines
MarkerBackgroundColor
MarkerBackgroundColorIndex
MarkerForegroundColor
MarkerForegroundColorIndex
马尔凯西斯
标记样式(MarkerStyle)
Name
Parent
ParentDataLabelOption
PictureType
PictureUnit2
PlotColorIndex
PlotOrder
quartilecalculationinclusivemedian
RegionLabelOptions
夏岛
平滑(Smooth)
Type
Values
XValues
Chart、Series、SeriesCollection,显然使用了两个或更多具有三个对象的对象。
这三个对象中的每一个都有很多方法和属性,其中使用了Series的xValues和Values。
其他方法属性将在后面详细说明。
重要的是获取对象,修改对象的某些属性,以便在重新编程程序时能够轻松地解决我们的需求。(约翰f肯尼迪(John F . Kennedy))。
欢迎关注,所长。
-结束-
1.《【excel怎么使用坐标】创建excel图表,设置或返回x轴的方法,图表系列值》援引自互联网,旨在传递更多网络信息知识,仅代表作者本人观点,与本网站无关,侵删请联系页脚下方联系方式。
2.《【excel怎么使用坐标】创建excel图表,设置或返回x轴的方法,图表系列值》仅供读者参考,本网站未对该内容进行证实,对其原创性、真实性、完整性、及时性不作任何保证。
3.文章转载时请保留本站内容来源地址,https://www.lu-xu.com/keji/2511943.html