Help

Using the wiki toolbar

Most common wiki formatting tasks are available as buttons in the wiki toolbar. The toolbar also allows you to insert template macros for creating tables, graphs, links and layout in wiki pages.

Wiki toolbar

Using the wiki toolbar to format text

To use the toolbar to format text, select the text to format and click on the relevant icon in the toolbar.

Bold text

To bold text, select the text and click on the toolbar icon

Bold text toolbar icon
The third *word* in this sentence is bold

Preview

bold text preview

Italicize text

To italicize text, select the text and click on the toolbar icon

Italicize text toolbar icon
The third _word_ in this sentence is italicized

Preview

italicized text preview

Underline text

To underline text, select the text and click on the toolbar icon

Underline text toolbar icon
The third +word+ in this sentence is underlined

Preview

underlined text preview

Strike-through text

To strike-through text, select the text and click on the toolbar icon

Strike-through text toolbar icon
The third -word- in this sentence is struck-through

Preview

struck-through text preview

Color text

To change the color of text, select the text and click on the toolbar icon

Color text toolbar icon
            The third %{color:red}word% in this sentence is red
            The third %{color:#FF0000}word% in this sentence is red
        

Preview

colored text preview

The default color is red, to change the color either replace "red" in the markup with one of the other 16 web colors. W3C has listed 16 color names that will validate with any HTML validator. The color names are: aqua, black, blue, fuchsia, gray, green, lime, maroon, navy, olive, purple, red, silver, teal, white, and yellow. There are 150 cross browser color names you can use in addition.

You can otherwise type in a hexadecimal color value, as shown in the second line of markup.

Apply heading level

To apply header styling to a line of text, select the line and click on the appropriate heading level icon

Heading text toolbar icons
            
            h1. This line is H1 heading
            
            h2. This line is H2 heading
            
            h3. This line is H3 heading
            
        

Preview

heading text preview

For a heading style to be applied there must be a blank line both above and below the line you're styling. If the preview looks like this:

h1. This line is H1
heading then you probably don't have the necessary blank lines.

Create bulleted list

To create a bulleted list, select the rows that will comprise the list and click on the toolbar icon

Bulleted list toolbar icon
            * list item one
            * list item two
            * list item three
        

Preview

bulleted list preview

Create numbered list

To create a numbered list, select the rows that will comprise the list and click on the toolbar icon

Numbered list toolbar icon
            # list item one
            # list item two
            # list item three
        

Preview

numbered list preview

Right indent text

To right indent text, select the text to be indented and click on the toolbar icon as many times as you want the text to be indented (each click adds a level of indentation rightwards)

Right indent toolbar icon
            
            p(. right indent once
            
            p((. right indent twice
            
            p(((. right indent three times
            
        

Preview

right indent preview

For right indenting to be applied there must be a blank line both above and below the lines you're styling. If the preview looks like this:

p(. right indent once
heading then you probably don't have the necessary blank lines.

Left indent text (Outdent)

To left indent (outdent) text, select the text to be indented and click on the toolbar icon as many times as you want the text to be outdented (each click removes a level of right indentation)

Left indent toolbar icon
            p. a fully outdented line
        

Preview

left indent preview

Left indenting has no effect except to remove a level of right indentation. Once there are no levels of right indentation remaining, the text will just remain left justified.

Using the wiki toolbar to create charts and tables

Data series chart

A burnup chart showing the number of points of scope for stories in each card status over time. Trend lines have been added to project into the future.

Data series chart toolbar icon
			{{ 
			data-series-chart  
			conditions: 'Type' = 'Story' AND NOT 'Iteration - Added' = NULL
			labels: SELECT DISTINCT 'Iteration - Scheduled'
			x-title: Iteration
			y-title: Total Story Points
			show-start-label: true
			data-point-symbol: diamond
			data-labels: true    
			cumulative: true
			chart-height: 500
			chart-width: 800
			plot-height: 375
			plot-width: 500
			series: 
			- label: Total Scope
			color: black
			type: line
			data: SELECT 'Iteration - Added', SUM('Estimate')
			- label: Analysis Complete
			color: green
			type: line
			trend: true
			trend-line-width: 2
			data: SELECT 'Iteration - Analysis Completed', SUM('Estimate') WHERE 'Status' = 'Ready for Development' and 'Iteration - Analysis Completed' IS NOT NULL
			- label: Development Complete
			color: orange
			type: line
			trend: true
			trend-line-width: 2
			data: SELECT 'Iteration - Dev Completed', SUM('Estimate') WHERE 'Status' = 'Development Complete' and 'Iteration - Dev Completed' IS NOT NULL
			- label: Signed Off
			color: blue
			type: line  
			trend: true
			trend-line-width: 2
			data: SELECT 'Iteration - Accepted', SUM('Estimate') WHERE 'Status' = 'Accepted' and 'Iteration - Accepted' IS NOT NULL
			}}
		

Preview

Example data series chart

Parameters
Chart-level options
NameMeaningRequiredDefault value
three-dOne of [true/false] indicating whether to plot in a 3-d styleno
x-titleSpecify the title for the x-axis. Defaults to name of property that is driving the labels.no
y-titleSpecify the title for the y-axis. Defaults to the aggregation of the first data series.no
chart-heightSpecify the height of the entire chart (plot area plus legend) in pixels.no
chart-widthSpecify the width of the entire chart (plot area plus legend) in pixels.no
plot-heightSpecify the height of the plot area in pixels.no
plot-widthSpecify the width of the plot area in pixels.no
cumulativeOne of [true/false] indicating whether the data of each series accumulates or is stand-alone. Defaults to false.no
seriesa list of the actual data series to be plotted. at least one series is required. Markup format is same basic format as stack-bar-chart.yes
conditionsMQL WHERE clause narrowing the the set of cards available to each series.no
x-labels-propertyAllow user to specify a property for label values. Defaults to the property definition specified by the first data series. In either case, all values will be used as labels.no
x-labels-startAllow user to specify the start value for labels on the x axis. Must be a valid, existing value for the x labels property. Defaults to first value for the x labels property. When x labels property is a date property, the value can be earlier than any existing value. Note that when plotting a cumulative chart, this parameter does not impact the scope of included cards in any data accumulation. I.e, this parameter only impacts the scope of what is drawn. Use the conditions parameter to restrict the cards to be accumulated.no
x-labels-endAllow user to specify the end value for labels on the x axis. Must be a valid, existing value for the x labels property. Defaults to first value for the x labels property. When x labels property is a date property, the value can be later than any existing value. Note that when plotting a cumulative chart, this parameter does not impact the scope of included cards in any data accumulation. I.e, this parameter only impacts the scope of what is drawn. Use the conditions parameter to restrict the cards to be accumulated.no
x-labels-stepAllow user to specify that only every N labels should be displayed on the x-axis. This is useful when plotting against a property with many values, such as date properties. Default is 1, except in the case of date properties with more than 14 values, in which case the default is 7.no
x-labels-conditionsWhen charting against a card property, allow the user to specify conditions to narrow the set of cards to be used as x labels. Does not work when charting against text, numeric, or user properties. Use x-labels-start and x-labels-end to restrict the set of labels for those property types.no
show-start-labelOne of [true/false] specifying whether to add a data point at the start of your series to show an implied starting point. This is especially useful when wanting to show a down-from line starting from the down-from value, or when wanting to show a line starting from 0. The default value is false unless any series specifies a 'down-from' parameter, in which case the default is true. The label can be set with the 'start-label' parameter.no
start-labelAny text to be used as the label when using the 'show-start-label' parameter.no
Chart-level options that can be overridden by any individual series
NameMeaningRequiredDefault value
chart-typeOne of [line/area/bar] specifying how to draw each series. Default is line. Can be overridden by an individual series type.no
line-widthLine width for any series of type line. Default is 3.no
line-styleOne of [solid/dash] specifying line style for any series of type line. Default is solid.no
trendOne of [true/false] specifying whether to plot each series' data beyond the point at which the series contains no new data. Defaults to false. Can be overridden by an individual series.no
trend-scopeCan be 'all' or an integer number. Specify the number of 'recent' data points (from the set of relevant data points-see trend-ignore) to be used in plotting the trend. Defaults to 'all.' Can be overridden by an individual series.no
trend-ignoreOne of [none/zeroes-at-end/zeroes-at-end-and-last-value] specifying which data points at the end of the series to ignore when plotting the trend. The 'zeroes-at-end' option ignore all zeroes in the series beyond the last non-zero value. The 'zeroes-at-end-and-last-value' option ignores all zeroes in the series beyond the last non-zero value as well as that non-zero value, assuming that it's an 'in-progress' item. The 'none' option considers all data points in the series. The default is 'zeroes-at-end-and-last-value.' Can be overridden by an individual series.no
trend-line-colorSpecifies the color of the trend line. Defaults to same color as actual data line. Can be overridden by an individual series.no
trend-line-styleOne of [dash/solid] specifying the line's style. The default is dash. Can be overridden by an individual series.no
trend-line-widthAny integer number greater than 0 specifying the line's width. Can be overridden by an individual series.no
data-point-symbolOne of [none/square/diamond] specifying whether to plot the data points. Default value is 'none.' Can be overridden by a series. Only applicable to chart-type of 'line'no
data-labelsOne of [true/false] specifying whether to show the value of each data point. Default value is 'false.' Can be overridden by a series.no
projectAny valid project identifier, specifying which project’s cards will be plotted by this chart. Authorization will be enforced upon view. That is, if a user does not have access to a project, that data series will not be included in the chart for that user. Default is the project to which the page or card containing the macro belongs.no
Series-level options
NameMeaningRequiredDefault value
line-widthOverrides chart-level setting. See chart-level description.no
line-styleOverrides chart-level setting. See chart-level description.no
labelAny text specifying name of series to be displayed in the legend.yes
colorAnd text specifying a standard web color indicating the color to be used when plotting the series.no
dataMQL SELECT clause specifying the property and aggregation (and optional WHERE clause) for this series.yes
typeOverrides chart-level 'chart-type' setting. See chart-level description.yes
data-point-symbolOverrides chart-level setting. See chart-level description. Only applicable to type of 'line.'no
data-labelsOverrides chart-level setting. See chart-level description.no
projectsee chart-level optionsno
down-fromMQL SELECT clause specifying a value from which this series will be plotted down from. This is how Mingle supports burn downs. E.g.
SELECT SUM WHERE 'Entered Scope Iteration' IS NOT NULL
no
trendOverrides chart-level setting. See chart-level description.no
trend-scopeOverrides chart-level setting. See chart-level description.no
trend-ignoreOverrides chart-level setting. See chart-level description.no
trend-line-colorOverrides chart-level setting. See chart-level description.no
trend-line-styleOverrides chart-level setting. See chart-level description.no
trend-line-widthOverrides chart-level setting. See chart-level description.no

Stacked bar chart

Ratio bar chart

Display a bar chart with each bar showing the percentage of closed stories in a particular feature. In terms of card properties, what we want to show is this: for all cards with property 'Type' equal to 'Story,' calculate the percentage (based upon the SUM of the 'Size' property) of cards with property 'Status' equal to 'Closed.'

Ratio bar chart toolbar icon
			{{
			ratio-bar-chart
			totals: SELECT Feature, SUM(Size) WHERE Type = Story
			restrict-ratio-with: Status = Closed
			}}
		

Preview

Example ratio bar chart

Parameters
NameMeaningRequiredDefault value
totalsA MQL query returning the full scope of the chart. The MQL query must return a two column results set. The values in the first column will be the labels for the result set. The values in the second column represent the full height of the bars (the y-axis).Yes
restrict-ratio-withA MQL condition that represents the portion of each bar to be filled in with color. The results of the totals parameter represent 100% of the height.Yes
colorA hex string representing the color of the bars. Can optionally be any standard web color name.NoLightBlue
x-titleThe title for the x-axis. Use this to override the default if there is a better name to explain what the labels represent.NoIf not specified, the name of the first property in the totals query will be used.
y-titleThe title for the y-axis.NoIf not specified, this will default to the property name of the property being plotted in the totals query.
three-dIf set to true, 3-d effects will be turned on. The data will be shown as rectangular columns.NoFALSE
chart-widthThe total width of the chart. This area includes the plot area, and any additional area used for labels and legends.No400
chart-heightThe total height of the chart. This area includes the plot area, and any additional area used for labels and legends.No300
plot-widthThe total width of the plotted area. Increasing this will increase the number of labels that can be clearly shown on the graph, but reduce the amount of area available for the legends.No230
plot-heightThe total height of the plotted area. Increasing this will increase the height of the plot itself, but reduce the amount of area available for the labels.No220

Pie chart

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

Using the wiki toolbar to insert links

Other wiki toolbar functions