Visfire 使用详解之 Axis

上一篇随笔中介绍了 AxisLabels (坐标轴文本) 的设置,这篇中简单介绍一下 Axis (坐标轴)的主要的几个属性的设置。

Visfire <wbr>使用详解之 <wbr>Axis

废话少说,主要的几个属性及属性的设置和意思请看下面的示例代码和注释:

?
Chart chart = new Chart
{
     Width = 500,
     Height = 300,
     View3D = true ,
     Bevel = true
};
chart.Titles.Add( new Title
{
     Text = "坐标轴设置示例"
});
  
Axis xaxis = new Axis();
// 设置坐标轴的背景色
xaxis.Background = new SolidColorBrush(Colors.Gray);
// 设置坐标轴上两点间的距离,这个属性不能和ScrollBarScale属性同时设置
xaxis.ClosestPlotDistance = 2;
// 启用或禁用坐标轴
xaxis.Enabled = true ;
// 坐标轴的最小值是否从0开始
xaxis.StartFromZero = true ;
// 坐标轴上两点间所表示的值的间隔
xaxis.Interval = 2;
// 坐标轴上两点间所表示的值的间隔的类型,数字或时间
xaxis.IntervalType = IntervalTypes.Number;
// 坐标轴线的样式
xaxis.LineStyle = LineStyles.Dashed;
// 附加到坐标轴文本上的前缀
xaxis.Prefix = "$" ;
// 附加到坐标轴文本上的后缀
xaxis.Suffix = "*" ;
              
chart.AxesX.Add(xaxis);
  
Axis yaxis = new Axis();
// 是否启用
yaxis.Enabled = true ;
// 前缀
yaxis.Prefix = "$" ;
// 后缀
yaxis.Suffix = "*";
// 坐标轴文本的格式化字符串,可以是任何有效的数字或时间格式化字符串
yaxis.ValueFormatString = "#0,0#";
// 坐标轴类型,可以是primary或secondary,这个属性只能用于Y轴,只有在设置了DataSeries的AxisYType属性后才会启用
yaxis.AxisType = AxisTypes.Secondary;
  
chart.AxesY.Add(yaxis);
  
DataSeries series = new DataSeries();
// 设置坐标轴的类型为 secondary
series.AxisYType = AxisTypes.Secondary;
              
series.RenderAs = RenderAs.Column;
  
series.DataPoints.Add( new DataPoint
{
     YValue = random.Next(1000, 50000),
     XValue = 3
});
series.DataPoints.Add( new DataPoint
{
     YValue = random.Next(1000, 50000),
     XValue = 4
});
series.DataPoints.Add( new DataPoint
{
     YValue = random.Next(1000, 50000),
     XValue = 6
});
series.DataPoints.Add( new DataPoint
{
     YValue = random.Next(1000, 50000),
     XValue = 7
});
  
chart.Series.Add(series);

下面是使用 Xaml 设置的代码

?
"0" View3D="True" Bevel="True" Width="500" Height="300">
            
                 "坐标轴设置示例" />
            
            
                 "True" StartFromZero="True" Interval="1" IntervalType="Number" LineStyle="Dashed" Prefix="$" Suffix="*" />
            
            
                 "True" Prefix="$" Suffix="*" ValueFormatString="#0,0#" />
            
            
                
                    
                         "43000" />
                         "32000" />
                         "28000" />
                         "40000" />
                    
                
            
        

示例代码下载:AxisDemo.zip http://zdd.me/myfiles

原址:http://www.cnblogs.com/forgetu/archive/2010/06/26/visifire-axis.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值