找回密码
 立即注册

QQ登录

只需一步,快速开始

似水流年

注册会员

4

主题

12

帖子

36

积分

注册会员

积分
36
最新发帖
似水流年
注册会员   /  发表于:2016-11-17 15:17  /   查看:3607  /  回复:2
QQ图片20161117151041.png

红框中x坐标名称过长太挤, 我想隐藏或者去掉,保留右边紫色边框中的标题就行了

代码
protected void CreateChartByYear(BarSeries YearValueSeries, Unit top, Unit left, Unit width)
        {
            //YearNameSeries.v
            FarPoint.Web.Chart.YPlotArea plotArea = new FarPoint.Web.Chart.YPlotArea();

            //FarPoint.Web.Chart.Y
            plotArea.Location = new System.Drawing.PointF(0.1f, 0.2f);

            plotArea.Size = new System.Drawing.SizeF(0.7f, 0.6f);

            YearValueSeries.VaryColors = true;

            plotArea.Series.Add(YearValueSeries);



            FarPoint.Web.Chart.LabelArea label = new FarPoint.Web.Chart.LabelArea();

            label.Text = hfFirstYear.Value;

            label.Location = new System.Drawing.PointF(0.5f, 0.02f);

            label.AlignmentX = 0.5f;

            label.AlignmentY = 0.0f;

            FarPoint.Web.Chart.LegendArea legend = new FarPoint.Web.Chart.LegendArea();

            legend.Location = new System.Drawing.PointF(0.98f, 0.5f);

            legend.AlignmentX = 1.0f;

            legend.AlignmentY = 0.5f;

            FarPoint.Web.Chart.ChartModel model = new FarPoint.Web.Chart.ChartModel();

            model.LabelAreas.Add(label);

            model.LegendAreas.Add(legend);

            model.PlotAreas.Add(plotArea);

            SpreadChart chart = new SpreadChart();

            chart.Model = model;


            if (fpSpreades.ActiveSheetView.Charts.Count != 0)
            {
                fpSpreades.ActiveSheetView.Charts.RemoveAt(0);
            }

            fpSpreades.ActiveSheetView.Charts.Add(chart);

            fpSpreades.ActiveSheetView.Charts[0].Left = left;
            fpSpreades.ActiveSheetView.Charts[0].Top = top;
            fpSpreades.ActiveSheetView.Charts[0].Width = width;


        }

2 个回复

倒序浏览
似水流年
注册会员   /  发表于:2016-11-17 16:09:00
沙发
还有就是导出到Excel 红框和紫框区域的标题都会变成???号
回复 使用道具 举报
dexteryao讲师达人认证 悬赏达人认证 SpreadJS 开发认证
超级版主   /  发表于:2016-11-17 17:34:31
板凳
您好,问题已收到。我测试后给您答复。
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 立即注册
返回顶部