Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Spotfire で ironpython スクリプトを使用して TreeMap のプロパティ (Hierarchy、Size by) を変更するにはどうすればよいですか。
私は解決策を見つけました:
from Spotfire.Dxp.Application.Visuals import Treemap treeChart = vis.As[Treemap]() vis.Title="tree map title" treeChart.Data.DataTableReference = "Your Expression" treeChart.ColorAxis.Expression = "Your Expression"