We use this chart to check weekly package sales during our renewal season. The x-axis is order weeks since on sale. The previous seasons are pulling as a continuous line but the 24 season is breaking up. Does anyone why this is and how to fix it?
Hi Amber,
The blank spots are days where there is no data on the x axis date. You can fill out in with this code:
Edit the widget, and from the upper-right (...) menu, select Edit Widget Code. This will open a new tab. Paste this code in: widget.on("beforeviewloaded",function(scope, args){ args.options.plotOptions.series.connectNulls = true; }); Save the widget and force a reload by Right Clicking and choosing Hard Reload (or just close and reopen the dashboard).
Edit the widget, and from the upper-right (...) menu, select Edit Widget Code. This will open a new tab.
Paste this code in:
widget.on("beforeviewloaded",function(scope, args){ args.options.plotOptions.series.connectNulls = true; });
Save the widget and force a reload by Right Clicking and choosing Hard Reload (or just close and reopen the dashboard).
From: community.tessituranetwork.com/.../broken-line-chart-in-tess-analytics
(also see: https://community.tessituranetwork.com/topical_groups/analytics-coffee/w/wiki/793/removing-data-markers-for-isolated-single-data-points)
Thank you! It worked.
Woohoo!
And with the extra code you can
etc. It's a lucky dip of linegraph joy.