king
2023-12-06 6830aad220f6b8f263b2e64eaaae56a6ad785afd
src/menu/components/chart/antv-bar/chartcompile/index.jsx
@@ -249,10 +249,10 @@
            children: [
              { value: 'rect', label: 'rect(矩形)' },
              { value: 'hollow-rect', label: 'hollow-rect(空心矩形)' },
              { value: 'line', label: 'line(线条)' },
              { value: 'tick', label: 'tick(波动)' },
              // { value: 'funnel', label: 'funnel' },
              { value: 'pyramid', label: 'pyramid(角锥)' }
              // { value: 'line', label: 'line(线条)' },
              // { value: 'tick', label: 'tick(波动)' },
              // { value: 'funnel', label: 'funnel(漏斗图)' },
              { value: 'pyramid', label: 'pyramid(金字塔)' }
            ],
          }
        ]
@@ -653,7 +653,7 @@
                {datatype === 'statistics' ? <EditTable actions={['edit', 'move', 'del']} data={plot.colors || []} columns={plot.ramp ==='true' ? rampStatColorColumns : statColorColumns} onChange={this.changeColor}/> : null}
                {datatype !== 'statistics' ? <EditTable actions={['edit']} data={plot.colors || []} columns={plot.ramp ==='true' ? rampColorColumns : colorColumns} onChange={this.changeColor}/> : null}
                {plot.chartType === 'bar' && plot.datatype === 'query' ? <div className="mk-bar-colors">
                  <p>柱形颜色:可根据柱图序号设置颜色(请设置柱形宽度)。注:使用自定义图形设置或多根柱图时无效。</p>
                  <p>柱形颜色:可根据柱图序号设置颜色。注:使用自定义图形设置或多根柱图时无效。</p>
                  <div className="bar-color-add"><PlusOutlined onClick={this.addbarColor}/></div>
                  <EditTable actions={['edit', 'move', 'del']} data={plot.barcolors || []} columns={barColorColumns} onChange={this.changebarColor}/>
                </div> : null}