HEX
Server: Apache
System: Linux info 3.0 #1337 SMP Tue Jan 01 00:00:00 CEST 2000 all GNU/Linux
User: u41188965 (3074900)
PHP: 8.1.34
Disabled: NONE
Upload Files
File: /homepages/16/d176908298/htdocs/wdev/wp-content/plugins/statify/js/dashboard.js
( function() {
	// Initialize.
	var labels = [];
	var data = [];
	var statifyDataTable = jQuery( '#statify_chart_data' );
	var maxValue;
	var chartWidth;
	var fullWidth = true;
	var pointRadius = 4;
	var chart;

	// Abort if no data is present.
	if ( ! statifyDataTable.length ) {
		return;
	}

	// Collect data from hidden table.
	jQuery( 'th', statifyDataTable ).each( function() {
		labels.push( jQuery( this ).text() );
	} );

	jQuery( 'td', statifyDataTable ).each( function() {
		data.push( jQuery( this ).text() );
	} );

	// Determine maximum value for scaling.
	maxValue = Math.max.apply( Math, data );

	// Adjust display according if there are too many values to display redable.
	chartWidth = jQuery( '#statify_chart' ).width();
	if ( chartWidth < data.length * 4 ) {
		// Make chart scrollable, if 2px points are overlapping.
		fullWidth = false;
		pointRadius = 3;
	} else if ( chartWidth < data.length * 8 ) {
		// Shrink datapoints if 4px is overlapping, but 2 is not.
		pointRadius = 2;
	}

	// Draw chart.
	chart = new Chartist.Line( '#statify_chart', {
		labels: labels,
		series: [
			data,
		],
	}, {
		low: 0,
		showArea: true,
		fullWidth: fullWidth,
		width: ( fullWidth ? null : 5 * data.length ),
		axisX: {
			showGrid: false,
			showLabel: false,
			offset: 0,
		},
		axisY: {
			showGrid: true,
			showLabel: true,
			type: Chartist.FixedScaleAxis,
			low: 0,
			high: maxValue + 1,
			ticks: [
				0,
				Math.round( maxValue * 1 / 4 ),
				Math.round( maxValue * 2 / 4 ),
				Math.round( maxValue * 3 / 4 ),
				maxValue,
			],
			offset: 30,
		},
		plugins: [
			Chartist.plugins.tooltip( {
				appendToBody: true,
				class: 'statify-chartist-tooltip',
			} ),
		],
	} );

	// Replace default points with hollow circles, add "pageview(s) to value and append date (label) as meta data.
	chart.on( 'draw', function( d ) {
		var circle;
		if ( 'point' === d.type ) {
			circle = new Chartist.Svg( 'circle', {
				cx: [ d.x ],
				cy: [ d.y ],
				r: [ pointRadius ],
				'ct:value': d.value.y + ' ' + ( d.value.y > 1 ? statify_translations.pageviews : statify_translations.pageview ),
				'ct:meta': labels[d.index],
			}, 'ct-point' );
			d.element.replace( circle );
		}
	} );
}() );