如何在 MIMChart 库中为图形使用固定的颜色集?建议是可观的

Posted

技术标签:

【中文标题】如何在 MIMChart 库中为图形使用固定的颜色集?建议是可观的【英文标题】:How To use Fixed set of colors for the Graph in MIMChart Library? suggestions are appreciable 【发布时间】:2013-07-19 13:40:47 【问题描述】:

我在使用 MIMChart 库设置固定颜色集时遇到问题。我正在使用 Ritu Raj MIMChart 库

MIMBarGraph *myBarChart;
myBarChart=[[MIMBarGraph alloc]initWithFrame:CGRectMake(50, 20, myTableView.frame.size.width-    50, myTableView.frame.size.width * 0.5)];
myBarChart.delegate=self;
myBarChart.tag=10+indexPath.row;
myBarChart.isGradient=YES;
myBarChart.groupedBars=YES;
myBarChart.glossStyle=GLOSS_STYLE_1;
myBarChart.xTitleStyle=X_TITLES_STYLE2;
[myBarChart drawBarChart];
[cell.contentView addSubview:myBarChart];

【问题讨论】:

【参考方案1】:

试试这个代理

-(NSArray *)colorsForBarChart:(id)graph 
    NSArray *colorsArray;

    MIMColorClass *color1=[MIMColorClass colorWithRed:0.0f/255.0f Green:255.0f/255.0f Blue:127.0f/255.0f Alpha:1];
    MIMColorClass *color2=[MIMColorClass colorWithRed:255.0f/255.0f Green:4.0f/255.0f Blue:0.0f/255.0f Alpha:1];
    MIMColorClass *color3=[MIMColorClass colorWithRed:255.0f/255.0f Green:182.0f/255.0f Blue:193.0f/255.0f Alpha:1];
    MIMColorClass *color4=[MIMColorClass colorWithRed:1.0f/255.0f Green:255.0f/255.0f Blue:255.0f/255.0f Alpha:1];

    colorsArray=[NSArray arrayWithObjects:color1,color2,color3,color4, nil];

    return colorsArray;


【讨论】:

以上是关于如何在 MIMChart 库中为图形使用固定的颜色集?建议是可观的的主要内容,如果未能解决你的问题,请参考以下文章

如何在 PHP 的 GD 库中为文本添加发光或阴影? [关闭]

如何从 Angular 的 PrimeNG 库中为 AutoComplete 组件设置焦点

如何使用输入数组在 GraphView 库中绘制图形?

如何在具有缩放填充模式的 tableViewHeader 中为 UIImageView 使用固定高度?

如何在 JavaScript 中为画布指定颜色空间?

绘制动画网络图的工具是什么