import React, { Component } from "react"; import * as am5 from "@amcharts/amcharts5"; import * as am5xy from "@amcharts/amcharts5/xy"; import am5themes_Animated from "@amcharts/amcharts5/themes/Animated"; class RowChart extends Component { componentDidMount() { let root = am5.Root.new("RowChart"); root._logo.dispose(); root.setThemes([am5themes_Animated.new(root)]); // Create chart // https://www.amcharts.com/docs/v5/charts/xy-chart/ let chart = root.container.children.push( am5xy.XYChart.new(root, { panX: false, panY: false, wheelX: "none", wheelY: "none", }) ); // We don't want zoom-out button to appear while animating, so we hide it chart.zoomOutButton.set("forceHidden", true); // Create axes // https://www.amcharts.com/docs/v5/charts/xy-chart/axes/ let yRenderer = am5xy.AxisRendererY.new(root, { minGridDistance: 30, }); let yAxis = chart.yAxes.push( am5xy.CategoryAxis.new(root, { maxDeviation: 0, categoryField: "network", renderer: yRenderer, tooltip: am5.Tooltip.new(root, { themeTags: ["axis"] }), }) ); let xAxis = chart.xAxes.push( am5xy.ValueAxis.new(root, { maxDeviation: 0, min: 0, extraMax: 0.1, renderer: am5xy.AxisRendererX.new(root, {}), }) ); // Add series // https://www.amcharts.com/docs/v5/charts/xy-chart/series/ let series = chart.series.push( am5xy.ColumnSeries.new(root, { name: "Series 1", xAxis: xAxis, yAxis: yAxis, valueXField: "value", categoryYField: "network", tooltip: am5.Tooltip.new(root, { pointerOrientation: "left", labelText: "{valueX}", }), }) ); // Rounded corners for columns series.columns.template.setAll({ cornerRadiusTR: 5, cornerRadiusBR: 5, }); // Make each column to be of a different color series.columns.template.adapters.add("fill", function (fill, target) { return chart.get("colors").getIndex(series.columns.indexOf(target)); }); series.columns.template.adapters.add("stroke", function (stroke, target) { return chart.get("colors").getIndex(series.columns.indexOf(target)); }); // Set data let data = [ { network: "60대", value: 80, }, { network: "70대", value: 80, }, { network: "80대", value: 70, }, { network: "90대", value: 75, }, ]; yAxis.data.setAll(data); series.data.setAll(data); sortCategoryAxis(); // Get series item by category function getSeriesItem(category) { for (var i = 0; i < series.dataItems.length; i++) { let dataItem = series.dataItems[i]; if (dataItem.get("categoryY") == category) { return dataItem; } } } chart.set( "cursor", am5xy.XYCursor.new(root, { behavior: "none", xAxis: xAxis, yAxis: yAxis, }) ); // Axis sorting function sortCategoryAxis() { // Sort by value series.dataItems.sort(function (x, y) { return x.get("valueX") - y.get("valueX"); // descending //return y.get("valueY") - x.get("valueX"); // ascending }); // Go through each axis item am5.array.each(yAxis.dataItems, function (dataItem) { // get corresponding series item let seriesDataItem = getSeriesItem(dataItem.get("category")); if (seriesDataItem) { // get index of series data item let index = series.dataItems.indexOf(seriesDataItem); // calculate delta position let deltaPosition = (index - dataItem.get("index", 0)) / series.dataItems.length; // set index to be the same as series data item index dataItem.set("index", index); // set deltaPosition instanlty dataItem.set("deltaPosition", -deltaPosition); // animate delta position to 0 dataItem.animate({ key: "deltaPosition", to: 0, duration: 1000, easing: am5.ease.out(am5.ease.cubic), }); } }); // Sort axis items by index. // This changes the order instantly, but as deltaPosition is set, // they keep in the same places and then animate to true positions. yAxis.dataItems.sort(function (x, y) { return x.get("index") - y.get("index"); }); } // update data with random values each 1.5 sec // setInterval(function () { // updateData(); // }, 1500); // function updateData() { // am5.array.each(series.dataItems, function (dataItem) { // let value = // dataItem.get("valueX") + // Math.round(Math.random() * 1000000000 - 500000000); // if (value < 0) { // value = 500000000; // } // // both valueY and workingValueY should be changed, we only animate workingValueY // dataItem.set("valueX", value); // dataItem.animate({ // key: "valueXWorking", // to: value, // duration: 600, // easing: am5.ease.out(am5.ease.cubic), // }); // }); // sortCategoryAxis(); // } // Make stuff animate on load // https://www.amcharts.com/docs/v5/concepts/animations/ series.appear(1000); chart.appear(1000, 100); this.root = root; } componentWillUnmount() { if (this.root) { this.root.dispose(); } } render() { return
; } } export default RowChart;