日付軸

可能な使用シナリオ

ワークシートデータからチャートを作成し、そのデータに日付が使用されており、チャートの水平(カテゴリ)軸に日付がプロットされている場合、Aspose.cellsは自動的にカテゴリ軸を日付(時間軸)軸に変更します。 日付軸は、特定の間隔や基本単位(日数、月、年など)で、ワークシートの日付を年代順に表示します。ワークシート上の日付が順次に並んでいない場合や基本単位が同じでない場合でも、表示されます。 デフォルトでは、Aspose.cellsは、ワークシートデータの任意の2つの日付間の最小の差に基づいて、日付軸の基本単位を決定します。たとえば、株価のデータがあり、日付間の最小の差が7日の場合、Excelは基本単位を日に設定しますが、株のパフォーマンスをより長い期間で見たい場合は、基本単位を月や年に変更することができます。

Microsoft Excelのように日付軸を処理する

以下のサンプルコードを参照して、新しいExcelファイルを作成し、チャートの値を最初のワークシートに配置します。 その後、チャートを追加し、Axisの種類を設定します。  TIME_SCALEのタイプを設定し、その後基本単位を日に設定します。

todo:image_alt_text

サンプルコード

from aspose.cells import Workbook
from aspose.cells.charts import CategoryType, ChartTextDirectionType, ChartType, TimeUnit
from aspose.cells.drawing import FillType
from datetime import datetime
# Create an instance of Workbook
workbook = Workbook()
# Get the first worksheet
worksheet = workbook.worksheets[0]
# Add the sample values to cells
worksheet.cells.get("A1").put_value("Date")
# 14 means datetime format
style = worksheet.cells.style
style.number = 14
# Put values to cells for creating chart
worksheet.cells.get("A2").set_style(style)
worksheet.cells.get("A2").put_value(datetime(2022, 6, 26))
worksheet.cells.get("A3").set_style(style)
worksheet.cells.get("A3").put_value(datetime(2022, 5, 22))
worksheet.cells.get("A4").set_style(style)
worksheet.cells.get("A4").put_value(datetime(2022, 8, 3))
worksheet.cells.get("B1").put_value("Price")
worksheet.cells.get("B2").put_value(40)
worksheet.cells.get("B3").put_value(50)
worksheet.cells.get("B4").put_value(60)
# Adda chart to the worksheet
chartIndex = worksheet.charts.add(ChartType.COLUMN, 9, 6, 21, 13)
# Access the instance of the newly added chart
chart = worksheet.charts[chartIndex]
# Add SeriesCollection (chart data source) to the chart ranging from "A1" cell to "B4"
chart.set_chart_data_range("A1:B4", True)
# Set the Axis type to Date time
chart.category_axis.category_type = CategoryType.TIME_SCALE
# Set the base unit for CategoryAxis to days
chart.category_axis.base_unit_scale = TimeUnit.DAYS
# Set the direction for the axis text to be vertical
chart.category_axis.tick_labels.direction_type = ChartTextDirectionType.VERTICAL
# Fill the PlotArea area with nothing
chart.plot_area.area.fill_format.fill_type = FillType.NONE
# Set max value of Y axis.
chart.value_axis.max_value = 70
# Set major unit.
chart.value_axis.major_unit = 10.0
# Save the file
workbook.save("DateAxis.xlsx")