gpt4 book ai didi

amcharts - 如何删除 amcharts 中的左侧刻度

转载 作者:行者123 更新时间:2023-12-03 06:40:38 28 4
gpt4 key购买 nike

如何删除 am 图表中的侧刻度轴。例如。在这个 fiddle 中,我想删除顶部的鳞片和左侧的鳞片。我需要操作哪些属性或方法。

演示图表。 http://jsfiddle.net/JSTQW/

目前,我正在使用此代码来绘制图表:

chart = new AmCharts.AmSerialChart();    
chart.dataProvider = chartData1; //data provider for chart
chart.categoryField = "year"; //this is the side category year field
chart.startDuration = 1; //this is the chart plotting time
chart.plotAreaBorderColor = "#ffffff"; //side div rectangular border
chart.plotAreaBorderAlpha = 15;
// this single line makes the chart a bar chart
chart.rotate = true;
chart.columnWidth=0.2;
// AXES
// Category
var categoryAxis = chart.categoryAxis;
categoryAxis.gridPosition = "start";
categoryAxis.gridAlpha = 0.1;
categoryAxis.axisAlpha = 0;

// Value
var valueAxis = new AmCharts.ValueAxis();
valueAxis.axisAlpha = 0;
valueAxis.gridAlpha = 0.1;
valueAxis.position = "top";
valueAxis.maximum = 100;
chart.addValueAxis(valueAxis);

// GRAPHS
// first graph
var graph1 = new AmCharts.AmGraph();
graph1.type = "column";
graph1.title = "Income";
graph1.valueField = "income";
graph1.balloonText = "Income:[[value]]";
graph1.lineAlpha = 0;
graph1.fillColors = "#7fb5b7";
graph1.fillAlphas = 1;
chart.addGraph(graph1);

// second graph
var graph2 = new AmCharts.AmGraph();
graph2.type = "column";
graph2.title = "Expenses";
graph2.valueField = "expenses";
graph2.balloonText = "Expenses:[[value]]";
graph2.lineAlpha = 0;
graph2.fillColors = "#999999";
graph2.fillAlphas = 1;
chart.addGraph(graph2);

// LEGEND
//var legend = new AmCharts.AmLegend();
// chart.addLegend(legend);

chart.creditsPosition = "top-right";

// WRITE
chart.write("chartdiv1");

enter image description here

最佳答案

接受的答案对于 amcharts4 不再有效,现在您可以通过以下方式执行此操作:

valueAxis.renderer.labels.template.disabled = true;

您可能还想禁用工具提示:

valueAxis.tooltip.disabled = true;

关于amcharts - 如何删除 amcharts 中的左侧刻度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23607406/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com