Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
477 views
in Technique[技术] by (71.8m points)

reactjs - Amcharts控制水平日期点间隔(Amcharts control horizontal datepoint interval)

How I can stretch chart regarding the timeline like in the first picture?

(我如何像第一张图片一样拉伸有关时间轴的图表?)

The chart is automatically applying uniform spacing to the yAxis.

(图表会自动将均匀间距应用于yAxis。)

I need the datapoints to match up with the labels.

(我需要数据点与标签匹配。)

const createSeries = (field, name, stacked, fillColor, strokeColor) => {
      const series = chart.series.push(new am4charts.LineSeries());
      series.dataFields.valueY = field;
      series.dataFields.categoryX = 'timestamp';
      series.fill = am4core.color(fillColor);
      series.fillOpacity = 0.7;
      series.stroke = am4core.color(strokeColor);
      series.strokeWidth = 1;
      series.tooltip.background.strokeOpacity = 0;
      series.tooltip.getFillFromObject = false;
      series.tooltip.background.fill = am4core.color('#202632');
      series.stacked = stacked;
    };

在此处输入图片说明 在此处输入图片说明

  ask by wadadaaa translate from so

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)
等待大神答复

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...