You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 10 Next »

Starting with this version, the Calendar Week parameter is no longer formatted with the default c3.js formatting, that was:

before version 1.4.1
WEEK("CW%W") //week formatting - default c3.js

Replaced with this version:

starting with version 1.4.1
function formatWeek(d)
{
	if (d instanceof Date)
	{
		var momentDate;

		//we need this for checking if the chart is displayed in an iframe (Jira UI) or in a separate window
		var isInIframe = (window === window.parent) ? false : true;

		//use jira moment when available
		if (isInIframe) {
			momentDate = window.parent.moment(d);
		}
		//use included resource for displaying the week in charts to go - requires moment.js as a resource in the JS layout
		else {
			momentDate = moment(d);
		}

		return 'CW' + momentDate.week();
	}
	return '';
}

So if you have scripted charts that are using the Time Picker parameter, please change the layout and add the formatWeek function provided above to it, so that the chart can be properly rendered.

Direct download from Marketplace

Bug fixes

  • Incorrect week is being returned if the Time Period Picker is set to use week as input parameter.
  • Charts are not being loaded in some browsers if opened through a link.