이 글의 내용은 echarts 도넛 차트를 회전하고 강조 표시하는 구현 방법(코드)에 대한 것입니다. 도움이 필요한 친구들이 참고할 수 있기를 바랍니다. .
전체 원에서 섹터 값의 백분율을 계산하여 섹터 각도를 얻은 다음 startAngle 속성을 기반으로 그래픽 렌더링이 시작되는 각도를 설정합니다. 클릭하면 원이 회전하여 항상 특정 지점에 정렬됩니다.
이 기간 동안 특정 부채꼴 모양의 영역이 너무 작아서 클릭이 불가능하다는 점을 고려하여 최소 부채꼴 모양의 영역을 설정합니다.
const myChartContainer = document.getElementById( 'chart' ); const myChart = echarts.init( myChartContainer ); let minAngle = 30;// 最小扇形区域为30 for ( let i = 0; i < obj.data.length; i++ ) { //某项数据为0时,最小扇形区域为0 if ( obj.data[ i ].value === 0 ) { minAngle = 0; break; } } const pieValue = obj.data.map( v => { return v.value; } ) const sum = pieValue.reduce( ( prev, cur ) => {//数据值的总和 return prev + cur; }, 0 ); const sum2 = pieValue.reduce( ( prev, cur ) => { if ( cur < sum / 12 && cur > 0 ) {//某个值大于0小于总和的1/12即30时,按30计算和 return prev + sum / 12; } return prev + cur; }, 0 ); let initPieValue = pieValue[ 0 ];// 初始值 if ( initPieValue < sum / 12 && initPieValue > 0 ) { initPieValue = sum / 12; } const option = { tooltip: { show: false, trigger: 'item', formatter: '{a} <br/>{b}: {c} ({d}%)' }, legend: { show: false, orient: 'vertical', x: 'left' }, color: [ '#44bbf8', '#93e588', '#ffd87b', '#f88071' ], series: [ { name: '', type: 'pie', radius: [ '45%', '79%' ], clockWise: false, startAngle: 167 - ( initPieValue / sum2 * 360 / 2 ), minAngle: minAngle, avoidLabelOverlap: false, itemStyle: { emphasis: { radius: [ '46%', '100%' ] } }, label: { normal: { show: false, position: 'center' }, emphasis: { show: false, textStyle: { fontSize: '30', fontWeight: 'bold' } } }, labelLine: { normal: { show: false } }, data: obj.data } ] }; myChart.setOption( option ); if ( minAngle === 30 ) { //最小扇形区域30时 myChart.dispatchAction( { type: 'highlight', seriesIndex: 0, dataIndex: 0 } ); } let preDataIndex = 0; myChart.on( 'click', ( v ) => { if ( v.dataIndex === preDataIndex ) { myChart.dispatchAction( { type: 'highlight', seriesIndex: 0, dataIndex: v.dataIndex } ); return; } const sum1 = pieValue.reduce( ( prev, cur, index ) => { if ( index < v.dataIndex ) { if ( cur < sum / 12 && cur > 0 ) { return prev + sum / 12; // 饼图的扇形最小角度设置为30,占圆的1/12 } return prev + cur; } return prev; }, 0 ); let curPieValue = pieValue[ v.dataIndex ]; if ( curPieValue < sum / 12 && curPieValue > 0 ) { curPieValue = sum / 12; } option.series[ 0 ].startAngle = 167 - ( sum1 / sum2 * 360 + curPieValue / sum2 * 360 / 2 );// 开始渲染图形的角度 myChart.setOption( option ); preDataIndex = v.dataIndex; window.setTimeout( () => { myChart.dispatchAction( { type: 'highlight', seriesIndex: 0, dataIndex: v.dataIndex } ); }, 400 ); this.mrkName = v.data.name; this.mrkValue = v.data.value; } );
관련 권장 사항:
vue+Echarts를 사용하여 클릭 강조 표시 구현(코드 포함)
클릭 강조 효과를 얻기 위해 Echarts와 결합된 vue의 예
위 내용은 echarts 도넛 차트를 클릭하여 회전 및 강조 표시하는 구현 방법(코드)의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!