有没有办法在使用 create_gantt() 创建的 Plotly 甘特图中编辑条形图属性/特征?

问题描述 投票:0回答:0

我正在制作甘特图以使用 Plotly 跟踪项目任务进度。我想创建一个图表,将每个任务描述为甘特图中的条形图,并且该条形图应根据完成百分比值进行着色

我现有的代码如下: `

fig = ff.create_gantt(df,index_col='Team_Name', colors = color_dict, 
                      show_colorbar=True, showgrid_x = True, showgrid_y = False,
                      title = 'Project XYZ Tracker')
fig.update_yaxes(autorange='reversed')

` 此代码为我提供了甘特图,如此链接所示: Gantt Chart generated using the plotly code above

我希望甘特图中的条形看起来如此链接所示: Expected format of Bars (with percentage complete on the side, color, shading and opacity in the Gantt Chart

我使用的数据如下链接所示:Dataframe with sample data

python plotly gantt-chart
© www.soinside.com 2019 - 2024. All rights reserved.