Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

[2018-04-19] Released xCharts 1.4.1

Warning

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

Code Block
languagejs
titlebefore version 1.4.1
WEEK("CW%W") //week formatting - default c3.js

Replaced with this version:


Code Block
languagejs
titlestarting with version 1.4.1
linenumberstrue
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 

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.