Help

Creating charts and tables in wiki pages

Introduction

Mingle supports support the creation of graphs, charts and tables in wiki pages, which query the Mingle database to display up-to-date project information graphically.

The wiki toolbar allows you to insert templates for graphs, charts and tables via the icons indicated below

Wiki toolbar - with graph, chart and table icons highlighted

Finding a wiki page

Creating Charts and Graphs

To create a chart or graph, you use a Mingle wiki macro. You can either type the macro in by hand, or insert a template macro using the toolbar and then edit it.

Types of charts
  • Data series chart - used to plot series of data line graphs

    e.g. a burndown/burnup chart showing progress by iteration.

  • Stacked bar chart - used to plot series of data not only in bar charts, but also area charts and line graphs

    e.g. a chart showing the count of cards in each state (New, In progress, Complete) by iteration.

  • Ratio bar chart - used to show what percentage of cards across the values of a single specified property meet certain conditions

    e.g.

  • Pie chart - pie chart showing a percentage breakdown of all cards which meet the selection criteria, for each value of a single property

Data series chart

Stacked bar chart

Ratio bar chart

Pie chart

Creating Tables

Table - based on a query

Table - based on a saved view

Pivot table

Wiki page layout

You can use one or two column layout blocks to organise information in a wiki page. In Mingle this kind of layout is often referred to as a dashboard.

You can take a look at this example project overview page to see how that might look with some charts and tables included.

One-column layout

To create a single column layout block, this will create a named section within a wiki page which spans the wiki page and encloses other wiki content.

One Column Layout toolbar icon
            {% dashboard-panel %}
            {% panel-heading %} A heading for the layout {% panel-heading %}
            {% panel-content %}
            
            Some wiki content for layout
            
            {% panel-content %}
            {% dashboard-panel %}
        

Preview

One column layout preview

Where you would substitute appropriate text and content for A heading for the layout, and Some wiki content for layout respectively. The layout content can include any other wiki formatting or content, however nesting layout blocks is not recommended except as part of a two-column layout.

Two-column layout

To create a two column layout block, this will create a set of named sections within a wiki page, organized into two columns of equal width.

Two Column Layout toolbar icon
            {% two-columns %}
            {% left-column %}
            {% dashboard-half-panel %}
            {% panel-heading %}Top left panel{% panel-heading %}
            {% panel-content %}
            
            Some content
            
            {% panel-content %}
            {% dashboard-half-panel %}
            {% dashboard-half-panel %}
            {% panel-heading %}Second left panel{% panel-heading %}
            {% panel-content %}
            
            Some content
            
            {% panel-content %}
            {% dashboard-half-panel %}
            {% left-column %}
            {% right-column %}
            {% dashboard-half-panel %}
            {% panel-heading %}Top right panel{% panel-heading %}
            {% panel-content %}
            
            Some content
            
            {% panel-content %}
            {% dashboard-half-panel %}
            {% right-column %}
            {% two-columns %}
        

Preview

Two column layout preview

Where you would substitute appropriate text and content for xxx left/right panel, and Some content. You can add multiple

{% dashboard-half-panel %}
blocks on each side of the layout.

Mixed column layout

This is an example of using both one-column and two-column layout blocks in the same page

			{% dashboard-panel %}
			{% panel-heading %} A heading for the layout {% panel-heading %}
			{% panel-content %}
			
			Some wiki content for layout
			
			{% panel-content %}
			{% dashboard-panel %}
			
			{% two-columns %}
			{% left-column %}
			{% dashboard-half-panel %}
			{% panel-heading %}Top left panel{% panel-heading %}
			{% panel-content %}
			
			Some content
			
			{% panel-content %}
			{% dashboard-half-panel %}
			{% dashboard-half-panel %}
			{% panel-heading %}Second left panel{% panel-heading %}
			{% panel-content %}
			
			Some content
			
			{% panel-content %}
			{% dashboard-half-panel %}
			{% left-column %}
			{% right-column %}
			{% dashboard-half-panel %}
			{% panel-heading %}Top right panel{% panel-heading %}
			{% panel-content %}
			
			Some content
			
			{% panel-content %}
			{% dashboard-half-panel %}
			{% right-column %}
			{% two-columns %}
		

Preview

Mixed column layout preview