📁 PHP Dosya Yöneticisi
/
/
home
/
demodesigncom
/
b2be-ticaretscripti.demodesign.com.tr
/
boss
/
datas
/
js
/
chartist
📝
chartist-custom.js
← Geri Dön
new Chartist.LineChart( "#ct-1", { labels: ["Monday", "Tuesday", "Wednesday", "Thursday", "Friday"], series: [ [12, 9, 7, 8, 5], [2, 1, 3.5, 7, 3], [1, 3, 4, 5, 6], ], }, { fullWidth: true, chartPadding: { right: 40, }, } ); // advance smill animation var chart = new Chartist.LineChart( "#ct-2", { labels: ["1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12"], series: [ [12, 9, 7, 8, 5, 4, 6, 2, 3, 3, 4, 6], [4, 5, 3, 7, 3, 5, 5, 3, 4, 4, 5, 5], [5, 3, 4, 5, 6, 3, 3, 4, 5, 6, 3, 4], [3, 4, 5, 6, 7, 6, 4, 5, 6, 7, 6, 3], ], }, { low: 0, } ); var seq = 0, delays = 80, durations = 500; chart.on("created", function () { seq = 0; }); chart.on("draw", function (data) { seq++; if (data.type === "line") { // If the drawn element is a line we do a simple opacity fade in. This could also be achieved using CSS3 animations. data.element.animate({ opacity: { // The delay when we like to start the animation begin: seq * delays + 1000, // Duration of the animation dur: durations, // The value where the animation should start from: 0, // The value where it should end to: 1, }, }); } else if (data.type === "label" && data.axis === "x") { data.element.animate({ y: { begin: seq * delays, dur: durations, from: data.y + 100, to: data.y, // We can specify an easing function from Chartist.Svg.Easing easing: "easeOutQuart", }, }); } else if (data.type === "label" && data.axis === "y") { data.element.animate({ x: { begin: seq * delays, dur: durations, from: data.x - 100, to: data.x, easing: "easeOutQuart", }, }); } else if (data.type === "point") { data.element.animate({ x1: { begin: seq * delays, dur: durations, from: data.x - 10, to: data.x, easing: "easeOutQuart", }, x2: { begin: seq * delays, dur: durations, from: data.x - 10, to: data.x, easing: "easeOutQuart", }, opacity: { begin: seq * delays, dur: durations, from: 0, to: 1, easing: "easeOutQuart", }, }); } else if (data.type === "grid") { // Using data.axis we get x or y which we can use to construct our animation definition objects var pos1Animation = { begin: seq * delays, dur: durations, from: data[data.axis.units.pos + "1"] - 30, to: data[data.axis.units.pos + "1"], easing: "easeOutQuart", }; var pos2Animation = { begin: seq * delays, dur: durations, from: data[data.axis.units.pos + "2"] - 100, to: data[data.axis.units.pos + "2"], easing: "easeOutQuart", }; var animations = {}; animations[data.axis.units.pos + "1"] = pos1Animation; animations[data.axis.units.pos + "2"] = pos2Animation; animations["opacity"] = { begin: seq * delays, dur: durations, from: 0, to: 1, easing: "easeOutQuart", }; data.element.animate(animations); } }); chart.on("created", function () { if (window.__exampleAnimateTimeout) { clearTimeout(window.__exampleAnimateTimeout); window.__exampleAnimateTimeout = null; } window.__exampleAnimateTimeout = setTimeout(chart.update.bind(chart), 12000); }); // Animating A Donut With Svg.Animate new Chartist.PieChart( "#ct-8", { series: [50, 20, 10, 30, 10, 50, 15], labels: [1, 2, 3, 4, 5, 6, 7], }, { donut: true, showLabel: false, } ); chart.on("draw", function (data) { if (data.type === "slice") { var pathLength = data.element._node.getTotalLength(); data.element.attr({ "stroke-dasharray": pathLength + "px " + pathLength + "px", }); var animationDefinition = { "stroke-dashoffset": { id: "anim" + data.index, dur: 1000, from: -pathLength + "px", to: "0px", easing: Chartist.Svg.Easing.easeOutQuint, fill: "freeze", }, }; if (data.index !== 0) { animationDefinition["stroke-dashoffset"].begin = "anim" + (data.index - 1) + ".end"; } data.element.attr({ "stroke-dashoffset": -pathLength + "px", }); data.element.animate(animationDefinition, false); } }); chart.on("created", function () { if (window.__anim21278907124) { clearTimeout(window.__anim21278907124); window.__anim21278907124 = null; } window.__anim21278907124 = setTimeout(chart.update.bind(chart), 10000); }); // Bi-polar Line chart with area only new Chartist.LineChart( "#ct-5", { labels: [1, 2, 3, 4, 5, 6, 7, 8], series: [ [1, 2, 3, 1, -2, 0, 1, 0], [-2, -1, -2, -1, -2.5, -1, -2, -1], [0, 0, 0, 1, 2, 2.5, 2, 1], [2.5, 2, 1, 0.5, 1, 0.5, -1, -2.5], ], }, { high: 3, low: -3, showArea: true, showLine: false, showPoint: false, fullWidth: true, axisX: { showLabel: false, showGrid: false, }, } ); // Line chart with area new Chartist.LineChart( "#ct-4", { labels: [1, 2, 3, 4, 5, 6, 7, 8], series: [[5, 9, 7, 8, 5, 3, 5, 4]], }, { low: 0, showArea: true, } ); // Bi-polar bar chart var data = { labels: ["W1", "W2", "W3", "W4", "W5", "W6", "W7", "W8", "W9", "W10"], series: [[1, 2, 4, 8, 6, -2, -1, -4, -6, -2]], }; var options = { high: 10, low: -10, axisX: { labelInterpolationFnc: function (value, index) { return index % 2 === 0 ? value : null; }, }, }; new Chartist.BarChart("#ct-9", data, options); // Stacked bar chart new Chartist.BarChart( "#ct-10", { labels: [ "Q1", "Q2", "Q3", "Q4", "Q5", "Q6", "Q7", "Q8", "Q9", "Q10", "Q11", "Q13", "Q14", ], series: [ [100, 200, 300, 400, 500, 600, 700, 800, 900, 1000, 1100, 1200, 1300], [100, 200, 300, 400, 500, 600, 700, 800, 900, 1000, 1100, 1200, 1300], [100, 200, 300, 400, 500, 600, 700, 800, 900, 1000, 1100, 1200, 1300], ], }, { stackBars: true, axisY: { labelInterpolationFnc: function (value) { return value / 1000 + "k"; }, }, } ).on("draw", function (data) { if (data.type === "bar") { data.element.attr({ style: "stroke-width: 14px", }); } }); // Horizontal bar chart new Chartist.BarChart( "#ct-11", { labels: [ "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday", "Sunday", ], series: [ [5, 4, 3, 7, 5, 10, 3], [3, 2, 9, 5, 4, 6, 4], ], }, { seriesBarDistance: 10, reverseData: true, horizontalBars: true, axisY: { offset: 70, }, } ); // Extreme responsive configuration new Chartist.BarChart( "#ct-12", { labels: [ "2015-16", "2016-17", "2017-18", "2018-19", "2019-20", "2020-21", "2021-22", "2022-23", ], series: [ [0.9, 0.4, 1.5, 4.9, 3, 3.8, 3.8, 1.9], [6.4, 5.7, 7, 4.95, 3, 3.8, 3.8, 1.9], [4.3, 2.3, 3.6, 4.5, 5, 2.8, 3.3, 4.3], [3.8, 4.1, 2.8, 1.8, 2.2, 1.9, 6.7, 2.9], ], }, { stackBars: true, axisX: { labelInterpolationFnc: function (value) { return value .split(/\s+/) .map(function (word) { return word[0]; }) .join(""); }, }, axisY: { offset: 20, }, }, [ [ "screen and (min-width: 400px)", { reverseData: true, horizontalBars: true, axisX: { labelInterpolationFnc: Chartist.noop, }, axisY: { offset: 60, }, }, ], [ "screen and (min-width: 800px)", { stackBars: false, seriesBarDistance: 10, }, ], [ "screen and (min-width: 1000px)", { reverseData: false, horizontalBars: false, seriesBarDistance: 15, }, ], ] ); // ADD PEAK CIRCLES USING THE DRAW EVENTS var chart1 = new Chartist.BarChart('#ct-6', { labels: ['W1', 'W2', 'W3', 'W4', 'W5', 'W6', 'W7', 'W8', 'W9', 'W10'], series: [ [1, 2, 4, 8, 6, -2, -1, -4, -6, -2] ] }, { high: 10, low: -10, axisX: { labelInterpolationFnc: function(value, index) { return index % 2 === 0 ? value : null; } } }); chart1.on('draw', function(data) { if(data.type === 'bar') { data.group.append(new Chartist.Svg('circle', { cx: data.x2, cy: data.y2, r: Math.abs(Chartist.getMultiValue(data.value)) * 2 + 5 }, 'ct-slice-pie')); } }); // Holes in data var chart = new Chartist.LineChart( "#ct-7", { labels: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16], series: [ [5, 5, 10, 8, 7, 5, 4, null, null, null, 10, 10, 7, 8, 6, 9], [ 10, 15, null, 12, null, 10, 12, 15, null, null, 12, null, 14, null, null, null, ], [null, null, null, null, 3, 4, 1, 3, 4, 6, 7, 9, 5, null, null, null], [ { x: 3, y: 3 }, { x: 4, y: 3 }, { x: 5, y: undefined }, { x: 6, y: 4 }, { x: 7, y: null }, { x: 8, y: 4 }, { x: 9, y: 4 }, ], ], }, { fullWidth: true, chartPadding: { right: 10, }, low: 0, } ); // Filled holes in data var chart = new Chartist.LineChart( "#ct-3", { labels: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16], series: [ [5, 5, 10, 8, 7, 5, 4, null, null, null, 10, 10, 7, 8, 6, 9], [ 10, 15, null, 12, null, 10, 12, 15, null, null, 12, null, 14, null, null, null, ], [null, null, null, null, 3, 4, 1, 3, 4, 6, 7, 9, 5, null, null, null], [ { x: 3, y: 3 }, { x: 4, y: 3 }, { x: 5, y: undefined }, { x: 6, y: 4 }, { x: 7, y: null }, { x: 8, y: 4 }, { x: 9, y: 4 }, ], ], }, { fullWidth: true, chartPadding: { right: 10, }, lineSmooth: Chartist.Interpolation.cardinal({ fillHoles: true, }), low: 0, } );
💾 Kaydet
İptal
📝 Yeniden Adlandır
İptal
Kaydet
🔐 Dosya İzinleri (chmod)
İzin Değeri:
Hızlı Seçim:
777
755
644
600
777
= Herkes okur/yazar/çalıştırır
755
= Sahip tam, diğerleri okur/çalıştırır
644
= Sahip okur/yazar, diğerleri okur
600
= Sadece sahip okur/yazar
İptal
Uygula