Excel.ChartSeriesDimension enum

グラフ系列から値を取得するときのディメンションを表します。

注釈

[ API セット: ExcelApi 1.12 ]

// Link to full sample: https://raw.githubusercontent.com/OfficeDev/office-js-snippets/prod/samples/excel/10-chart/chart-bubble-chart.yaml

await Excel.run(async (context) => {
  const sheet = context.workbook.worksheets.getItem("Sample");

  // The sample chart is of type `Excel.ChartType.bubble`.
  const bubbleChart = sheet.charts.getItem("Product Chart");

  // Get the first series in the chart.
  const firstSeries = bubbleChart.series.getItemAt(0);

  // Get the values for the dimensions we're interested in.
  const bubbleSize = firstSeries.getDimensionValues(Excel.ChartSeriesDimension.bubbleSizes);
  const xValues = firstSeries.getDimensionValues(Excel.ChartSeriesDimension.xvalues);
  const yValues = firstSeries.getDimensionValues(Excel.ChartSeriesDimension.yvalues);
  const category = firstSeries.getDimensionValues(Excel.ChartSeriesDimension.categories);

  await context.sync();

  // Log the information.
  console.log(`Series ${category.value} - X:${xValues.value},Y:${yValues.value},Bubble:${bubbleSize.value}`);
});

フィールド

bubbleSizes = "BubbleSizes"

バブル チャートのバブル サイズのグラフ系列軸。

categories = "Categories"

カテゴリのグラフ系列軸。

values = "Values"

値のグラフ系列軸。

xvalues = "XValues"

散布図とバブル グラフの x 軸の値のグラフ系列軸。

yvalues = "YValues"

散布図とバブル グラフの y 軸の値のグラフ系列軸。