我使用以下代码为条形图提供特定颜色,用于python-pptx生成的条形图。
chart.series[0].invert_if_negative = True
chart.series[0].invert_if_negative = False
这大部分时间都很好看。但是,条形图有负值,条形图会出现几个问题。
我尝试过以下两个选项都没有效果。
function Recipes() {
$labels = array(
'name' => _x( 'Recipes', 'Post Type Recipes', 'recipes' ),
'singular_name' => _x( 'Recipe', 'Post Type Singular Name', 'Recipe' ),
'menu_name' => __( 'Recipes', 'recipes' ),
'name_admin_bar' => __( 'Recipes', 'recipes' ),
'archives' => __( 'Recipes Archives', 'recipes' ),
'parent_item_colon' => __( 'Parent Recipe', 'recipes' ),
'all_items' => __( 'All Recipes', 'recipes' ),
'add_new_item' => __( 'Add New Recipe', 'recipes' ),
'add_new' => __( 'Add Recipe', 'recipes' ),
'new_item' => __( 'New Recipe', 'recipes' ),
'edit_item' => __( 'Edit Recipe', 'recipes' ),
'update_item' => __( 'Update Recipe', 'recipes' ),
'view_item' => __( 'View Recipe', 'recipes' ),
'search_items' => __( 'Search Recipes', 'recipes' ),
);
$args = array(
'label' => __( 'Recipes', 'Recipes' ),
'description' => __( 'Recipes', 'recipes' ),
'labels' => $labels,
'supports' => array(
'title',
'thumbnail',
'comments',
'editor',
'revisions'),
'taxonomies' => array( 'category', 'recipes-tag' ),
'hierarchical' => true,
'public' => true,
'show_ui' => true,
'show_in_menu' => true,
'menu_position' => 5,
'menu_icon' => 'dashicons-editor-ul',
'show_in_admin_bar' => true,
'show_in_nav_menus' => true,
'can_export' => true,
'has_archive' => true,
'exclude_from_search' => false,
'publicly_queryable' => true,
'capability_type' => 'page',
'show_in_rest' => true,
'rest_controller_class' => 'WP_REST_Posts_Controller',
// 'rewrite' => array( 'slug' => 'recipes' ),
);
register_post_type( 'recipes', $args );
add_rewrite_rule(
'recipes/([a-z-]+)/([0-9]+)?$',
'index.php?post_type=recipes&name=$matches[1]&p=$matches[2]',
'top' );
}
add_action( 'init', 'Recipes', 0 );
function change_post_type_link( $link, $post = 0 ){
if ( $post->post_type == 'recipes' ){
return home_url( 'recipes/'. $post->post_name .'/'. $post->ID );
} else {
return $link;
}
}
add_filter('post_type_link', 'change_post_type_link', 10, 2);
有没有办法让图表正确渲染,颜色与类别名称不重叠?
答案 0 :(得分:0)
嗯,这是两个问题。但是,只要类别名称重叠,您可以通过将刻度标签位置设置为LOW来解决此问题:
from pptx.enum.chart import XL_TICK_LABEL_POSITION
category_axis = chart.category_axis
category_axis.tick_label_position = XL_TICK_LABEL_POSITION.LOW
在透明(或可能是白色)彩色条上,我怀疑您可能会看到与PowerPoint版本相关的不符合其他地方出现的规范。我在PowerPoint中打开它,看看你可以在属性对话框中看到的内容,是否反转if negative选项是按照你设置它的方式显示的,以及当你使用PowerPoint UI手动设置它时它是否运行。
如果"反转如果否定"未在数据系列中选中复选框>当您使用python-pptx
将其设置为True时填充(格式)对话框并单击该复选框以解决显示问题,您可以在python-pptx
GitHub问题列表中打开一个案例,我们就是&#39 ;我会修复下一个版本。
基本上,某些版本的PowerPoint会根据元素(<c:invertIfNegative> in this case
)解释布尔元素类型,例如此不一致,因此在通过测试时,它不会在所有PowerPoint中按预期运行版本。这可能就是你所看到的。
答案 1 :(得分:0)
尝试挖掘一下xml:
ccaxis = chart.category_axis
ticklblPos = ccaxis._element.find('{http://schemas.openxmlformats.org/drawingml/2006/chart}tickLblPos')
ticklblPos.set('val','low')
答案 2 :(得分:0)
用fill.solid()
代替fill.patterned()
对我有用:
color_red = RGBColor(254, 98, 94)
color_green = RGBColor(1, 194, 170)
for idx, point in enumerate(series.points):
fill = point.format.fill
fill.patterned()
if data[idx]<0 :
fill.fore_color.rgb = color_red
else:
fill.back_color.rgb = color_green