Chart View Settings

This page describes how to set the view settings for a specific chart.

You can provide specific settings for each chart on your presentation. These settings can include chart-type, font-family, sorting, placeholder. Check below for a full spec of the attributes available.

Chart view settings

Example in JSON

{
  "view_settings": {
    "slide_master_index": 0,
    "slide_layout_index": 0,
    "placeholder_index": 0,
    "chart_type": "bar",
    "hide_percentage": false,
    "show_legend": "bottom",
    "show_legend_font_family": "auto",
    "show_legend_font_size": 12,
    "show_legend_font_bold": false,
    "show_legend_font_color": "rgb(0,0,0)",
    "show_data_labels": "center",
    "show_data_label_font_family": "auto",
    "show_data_label_font_size": 12,
    "show_data_label_font_bold": false,
    "show_data_label_font_color": "rgb(0,0,0)",
    "show_horizontal_gridlines": false,
    "show_vertical_gridlines": false,
    "show_value_axis": "default",
    "show_value_axis_font_family": "auto",
    "show_value_axis_font_size": 12,
    "show_value_axis_font_bold": false,
    "show_value_axis_font_color": "rgb(0,0,0)",
    "show_category_axis_font_family": "auto",
    "show_category_axis_font_size": 12,
    "show_category_axis_font_bold": false,
    "show_category_axis_font_color": "rgb(0,0,0)",
    "show_sort": "none",
    "sorting_value": "no-sorting",
    "max_axis_scale": null,
    "min_axis_scale": null,
    "decimal_places": 0,
    "legend_in_layout": false,
    "vaxis_tick_label_line_color": "rgb(0,0,0)",
    "caxis_tick_label_line_color": "rgb(0,0,0)",
    "caxis_tick_label_line_width": 1,
    "plot_overlap": 0,
    "plot_gap_width": 50,
    "show_chart_title": false,
    "chart_title_font_bold": true,
    "chart_title_font_size": 12,
    "chart_title_font_color": "rgb(123,123,123)",
    "chart_title_font_family": "arial_narrow"
  }
}

Last updated