<template>  
  <view class="charts-box">  
    <qiun-data-charts   
      type="line"  
      :opts="opts"  
      :chartData="chartData"  
    />  
  </view>  
</template>  
<script>  
export default {  
  data() {  
    return {  
      chartData: {},  
      //这里的 opts 是图表类型 type="line" 的全部配置参数,您可以将此配置复制到 config-ucharts.js 文件中下标为 ['line'] 的节点中来覆盖全局默认参数。实际应用过程中 opts 只需传入与全局默认参数中不一致的【某一个属性】即可实现同类型的图表显示不同的样式,达到页面简洁的需求。  
      opts: {  
        timing: "easeOut",  
        duration: 1000,  
        rotate: false,  
        rotateLock: false,  
        color: ["#1890FF","#91CB74","#FAC858","#EE6666","#73C0DE","#3CA272","#FC8452","#9A60B4","#ea7ccc"],  
        padding: [15,10,0,15],  
        fontSize: 13,  
        fontColor: "#666666",  
        dataLabel: true,  
        dataPointShape: true,  
        dataPointShapeType: "solid",  
        touchMoveLimit: 60,  
        enableScroll: false,  
        enableMarkLine: false,  
        legend: {  
          show: true,  
          position: "bottom",  
          float: "center",  
          padding: 5,  
          margin: 5,  
          backgroundColor: "rgba(0,0,0,0)",  
          borderColor: "rgba(0,0,0,0)",  
          borderWidth: 0,  
          fontSize: 13,  
          fontColor: "#666666",  
          lineHeight: 11,  
          hiddenColor: "#CECECE",  
          itemGap: 10  
        },  
        xAxis: {  
          disableGrid: true,  
          disabled: false,  
          axisLine: true,  
          axisLineColor: "#CCCCCC",  
          calibration: false,  
          fontColor: "#666666",  
          fontSize: 13,  
          lineHeight: 20,  
          marginTop: 0,  
          rotateLabel: false,  
          rotateAngle: 45,  
          itemCount: 5,  
          boundaryGap: "center",  
          splitNumber: 5,  
          gridColor: "#CCCCCC",  
          gridType: "solid",  
          dashLength: 4,  
          gridEval: 1,  
          scrollShow: false,  
          scrollAlign: "left",  
          scrollColor: "#A6A6A6",  
          scrollBackgroundColor: "#EFEBEF",  
          title: "年",  
          titleFontSize: 13,  
          titleOffsetY: 0,  
          titleOffsetX: 0,  
          titleFontColor: "#666666",  
          format: ""  
        },  
        yAxis: {  
          gridType: "dash",  
          dashLength: 2,  
          disabled: false,  
          disableGrid: false,  
          splitNumber: 5,  
          gridColor: "#CCCCCC",  
          padding: 10,  
          showTitle: false,  
          data: []  
        },  
        extra: {  
          line: {  
            type: "straight",  
            width: 2,  
            activeType: "hollow",  
            linearType: "none",  
            onShadow: false,  
            animation: "vertical"  
          },  
          tooltip: {  
            showBox: true,  
            showArrow: true,  
            showCategory: false,  
            borderWidth: 0,  
            borderRadius: 0,  
            borderColor: "#000000",  
            borderOpacity: 0.7,  
            bgColor: "#000000",  
            bgOpacity: 0.7,  
            gridType: "solid",  
            dashLength: 4,  
            gridColor: "#CCCCCC",  
            boxPadding: 3,  
            fontSize: 13,  
            lineHeight: 20,  
            fontColor: "#FFFFFF",  
            legendShow: true,  
            legendShape: "auto",  
            splitLine: true,  
            horizentalLine: false,  
            xAxisLabel: false,  
            yAxisLabel: false,  
            labelBgColor: "#FFFFFF",  
            labelBgOpacity: 0.7,  
            labelFontColor: "#666666"  
          },  
          markLine: {  
            type: "solid",  
            dashLength: 4,  
            data: []  
          }  
        }  
      }  
    };  
  },  
  onReady() {  
    this.getServerData();  
  },  
  methods: {  
    getServerData() {  
      //模拟从服务器获取数据时的延时  
      setTimeout(() => {  
        //模拟服务器返回数据,如果数据格式和标准格式不同,需自行按下面的格式拼接  
        let res = {  
            categories: ["2018","2019","2020","2021","2022","2023"],  
            series: [  
              {  
                name: "成交量A",  
                data: [35,8,25,37,4,20]  
              },  
              {  
                name: "成交量B",  
                data: [70,40,65,100,44,68]  
              },  
              {  
                name: "成交量C",  
                data: [100,80,95,150,112,132]  
              }  
            ]  
          };  
        this.chartData = JSON.parse(JSON.stringify(res));  
      }, 500);  
    },  
  }  
};  
</script>  
<style scoped>  
  /* 请根据实际需求修改父元素尺寸,组件自动识别宽高 */  
  .charts-box {  
    width: 100%;  
    height: 300px;  
  }  
</style>我的父盒子宽度就是100%,x轴title显示不完整。如果再多几个字那就别想显示了。
你们的X轴标题能显示完整吗
 
             
             
             
			 
                                        
                                     
            
2 个回复
p***@163.com (作者)
解决了,使用 titleOffsetY 和 titleOffsetX 调整标题就可以
p***@163.com (作者)
如果还是不显示,可能是你设置了padding: [0, 0, 0, 0],
恭喜n发财
楼主你好,你这个是运行到小程序的还是app的,小程序里面x轴是不是换行,之前开发的时候app换行是可行的,小程序死活换行不了
2025-03-13 19:24
恭喜n发财
小程序里面x轴是不是不能换行
2025-03-13 19:25
p***@163.com (作者)
回复 恭喜n发财: 我开发的app,小程序没开发
2025-03-13 19:49
p***@163.com (作者)
回复 恭喜n发财: 你说的是标题字太多自动换行,还是想把x轴标题放到x轴下方
2025-03-13 19:50
恭喜n发财
回复 p***@163.com: x轴换行
2025-03-13 19:53
p***@163.com (作者)
回复 恭喜n发财: 你用 titleOffsetY 移到下面
2025-03-13 19:55