スタックドエリアチャート
import plotly.graph_objects as goimport numpy as np# データの準備x = ['A', 'B', 'C', 'D']y1 = np.array([10, 20, -30, 40]) # 1つ目の系列y2 = np.array([-15, 25, -5, 20]) # 2つ目の系列# 正の値のみを抽出y1_positive = np.where(y1 > 0, y1, 0)y2_positive = np.where(y2