决策支持方面的问题,大家请进来讨论!

66316631 2003-10-18 09:42:34
资料范围:决策支持方面的软件或文档或软件界面图。

我将要做的决策支持的功能范围:
数据报表与统计,
图型分析。(这种资料我最缺了)

谁有没有用过或者做过用友的“管理驾驶窗”??

(
*欢迎您:66316631 可用分:7595 总信誉分:100 注销我的登录
分不是问题,有资料就行,发言也行。
资料请发:XiangHua_Zhou@163.com
QQ:14194126
)
...全文
33 6 打赏 收藏 转发到动态 举报
写回复
用AI写文章
6 条回复
切换为时间正序
请发表友善的回复…
发表回复
superyys 2003-10-20
  • 打赏
  • 举报
回复
Decision Cube面板上的控件!
zhoutian618 2003-10-20
  • 打赏
  • 举报
回复
up
zhoutian618 2003-10-18
  • 打赏
  • 举报
回复
欢迎大家继续提供资料。
66316631 2003-10-18
  • 打赏
  • 举报
回复
谢谢duxin(小伍)。
欢迎大家继续提供资料。
duxin 2003-10-18
  • 打赏
  • 举报
回复
操作TChar
var

i, j, kum: Integer;

s, t: TBarSeries;

begin

with Chart1 do

begin

// Title of the Chart

SeriesList.Clear;

Title.Text.Clear;

Title.Text.Add('My Title for Char');

Legend.Visible :=True;

Legend.LegendStyle :=lsAuto;

Legend.TextStyle := ltsLeftValue;

// Create first Series

s := TBarSeries.Create(nil);

// Clear it

s.Clear;

s.BarStyle :=bsRectGradient;

s.ColorEachPoint :=True;

// set the title

s.Title := 'Bar 1';

// determine the chart, this series belongs to

s.ParentChart := Chart1;

// the x-axis shall use date

s.XValues.DateTime := False;

s.AutoBarSize :=False;

s.BarWidthPercent := 70;

s.OffsetPercent :=0;

s.Marks.Style :=smsPercent;

 

// create the second Series

t := TBarSeries.Create(nil);

t.Clear;

t.Title := 'Bar 2';

t.ParentChart := Chart1;

t.XValues.DateTime := False;

// this series uses the right axis

t.VertAxis := aLeftAxis;

// now add the random values

Randomize;

for i := 0 to 5 do

begin

j := Random(100) + 1;

s.AddXY(i, j);

kum := j;

t.AddXY(i , kum + Random(20));

end;

end;

end;
自猛料
zhoutian618 2003-10-18
  • 打赏
  • 举报
回复

5,379

社区成员

发帖
与我相关
我的任务
社区描述
Delphi 开发及应用
社区管理员
  • VCL组件开发及应用社区
加入社区
  • 近7日
  • 近30日
  • 至今
社区公告
暂无公告

试试用AI创作助手写篇文章吧