EXCEL气泡图怎么做?

发布网友 发布时间:2022-03-03 07:07

我来回答

4个回答

热心网友 时间:2022-03-03 08:36

原始图标发上来呀,有什么需求写明白呀。做气泡图很简单,插入-图表--其他图表--气泡图就行了

热心网友 时间:2022-03-03 09:54

如下图所示,选择【图标向导】---【气泡图】即可设置。

热心网友 时间:2022-03-03 11:29

找到一段代码,你先试试
Sub AttachLabelsToPoints()
'Dimension variables.
Dim
Counter As Integer, ChartName As String, xVals As String
' Disable screen
updating while the subroutine is run.
Application.ScreenUpdating =
False
'Store the formula for the first series in "xVals".
xVals =
ActiveChart.SeriesCollection(1).Formula
'Extract the range for the data
from xVals.
xVals = Mid(xVals, InStr(InStr(xVals, ","), xVals, _

Mid(Left(xVals, InStr(xVals, "!") - 1), 9)))
xVals = Left(xVals,
InStr(InStr(xVals, "!"), xVals, ",") - 1)
Do While Left(xVals, 1) =
","
xVals = Mid(xVals, 2)
Loop
'Attach a label to each data
point in the chart.
For Counter = 1 To Range(xVals).Cells.Count

ActiveChart.SeriesCollection(1).Points(Counter).HasDataLabel = True

ActiveChart.SeriesCollection(1).Points(Counter).DataLabel.Text =
Range(xVals).Cells(Counter, 1).Offset(0, -1).Value
Next Counter
End Sub

热心网友 时间:2022-03-03 13:20

看图

追问请帮忙做一下好吗?我的QQ是 77八4⑨零八4

声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。
E-MAIL:11247931@qq.com