amcharts valueaxis增量方式缩放

时间:2019-06-12 17:01:31

标签: amcharts amcharts4

我的值范围是1到40 000,这是我试图在amcharts序列图上绘制的值。由于图表自动缩放取决于值范围,因此小于500的值(例如:10、50、100 ...)在x轴本身上显示为线。在这种情况下,自动缩放比例为0-1000-2000-3000 ...

如何逐步实现缩放,即0-10-100-1000-10000 ...,以便所有蜡烛(包括低价蜡烛)也具有明显的可见性。

或提出任何更好的方法来使所有图表蜡烛在图表中可见。

<style>
#chartdiv {
width: 100%;
height: 500px;
}

</style>
<!-- Resources -->
<script src="https://www.amcharts.com/lib/4/core.js"> 
</script>
<script src="https://www.amcharts.com/lib/4/charts.js"> 
</script>
<script> 
src= 
"https://www.amcharts.com/lib/4/themes/animated.js" >
</script>

<!-- Chart code -->
<script>
am4core.ready(function() {

// Themes begin
am4core.useTheme(am4themes_animated);
// Themes end

// Create chart instance
var chart = am4core.create("chartdiv", 
am4charts.XYChart3D);

// Adding sample data
chart.data = [{
  "country": "USA",
  "visits": 39000
}, {
  "country": "China",
  "visits": 100
}, {
  "country": "Japan",
  "visits": 35000
}, {
  "country": "Germany",
  "visits": 50
}, {
  "country": "UK",
  "visits": 200
}, {
  "country": "France",
  "visits": 20
}, {
  "country": "India",
  "visits": 25
}, {
  "country": "Spain",
  "visits": 711
} ];

// Create axes
let categoryAxis = chart.xAxes.push(new 
am4charts.CategoryAxis());
categoryAxis.dataFields.category = "country";
categoryAxis.renderer.labels.template.rotation = 270;
categoryAxis.renderer.labels.template.hideOversized = 
false;
categoryAxis.renderer.minGridDistance = 20;
categoryAxis.renderer.labels.template.horizontalCenter = 
"right";
categoryAxis.renderer.labels.template.verticalCenter = 
"middle";
categoryAxis.tooltip.label.rotation = 270;
categoryAxis.tooltip.label.horizontalCenter = "right";
categoryAxis.tooltip.label.verticalCenter = "middle";

let valueAxis = chart.yAxes.push(new 
am4charts.ValueAxis());
valueAxis.title.text = "Countries";
valueAxis.title.fontWeight = "bold";

// Create series
var series = chart.series.push(new 
am4charts.ColumnSeries3D());
series.dataFields.valueY = "visits";
series.dataFields.categoryX = "country";
series.name = "Visits";
series.tooltipText = "{categoryX}: [bold]{valueY}[/]";
series.columns.template.fillOpacity = .8;

var columnTemplate = series.columns.template;
columnTemplate.strokeWidth = 2;
columnTemplate.strokeOpacity = 1;
columnTemplate.stroke = am4core.color("#FFFFFF");

columnTemplate.adapter.add("fill", (fill, target) => {
return chart.colors.getIndex(target.dataItem.index);
})

columnTemplate.adapter.add("stroke", (stroke, target) => 
{
return chart.colors.getIndex(target.dataItem.index);
})

chart.cursor = new am4charts.XYCursor();
chart.cursor.lineX.strokeOpacity = 0;
chart.cursor.lineY.strokeOpacity = 0;

}); // end am4core.ready()
</script>

<!-- HTML -->
<div id="chartdiv"></div>

1 个答案:

答案 0 :(得分:2)

您可以通过设置以下内容来实现:

valueAxis.logarithmic = true;