http://blog.flexexamples.com/category/linechart/

里面链接复制的时候失效了,请直接点击原页面进行查看

Setting specific minimum and maximum ranges for a Flex LineChart control LinearAxis
November , 2007Charting, LineChartinterval, maximum, minimum, minorInterval
The following example shows how you can set a specific minimum and maximum LinearAxis range for a LineChart control in Flex. Full code after the jump. Continue reading → Aligning data in a Flex LineChart control to horizontal and vertical tick marks
November , 2007Charting, GridLines, LineCharthorizontalTickAligned, verticalTickAligned
The following example shows how you can align the tick marks along the vertical and horizontal axis using the horizontalTickAligned and verticalTickAligned styles in the GridLines class, as seen in the following snippet: <mx:GridLines direction="both"
horizontalTickAligned="false"
verticalTickAligned="false"> ... </mx:GridLines>
Full code after the jump. Continue reading → Alternating background column colors in a Flex LineSeries chart
November , 2007Charting, LineChartlabelFunction, verticalAlternateFill, verticalFill
In a previous example, “Alternating background row colors in a Flex LineSeries chart”, we saw how to alternate row colors in a LineSeries chart using the horizontalFill and horizontalAlternateFill styles. In the following example, we see a similar technique for setting column background colors using the verticalFill and verticalAlternateFill styles, as seen in the following snippet: <mx:LineChart showDataTips=true dataProvider={dp}> <mx:backgroundElements>
<mx:GridLines direction=vertical>
<mx:verticalFill>
<mx:SolidColor color=haloBlue alpha=0.2 />
</mx:verticalFill>
<mx:verticalAlternateFill>
<mx:SolidColor color=haloSilver alpha=0.2 />
</mx:verticalAlternateFill>
</mx:GridLines>
</mx:backgroundElements> ... </mx:LineChart>
In this example, you also see examples of setting custom label functions for a LinearAxis and CategoryAxis, both of which we’ve seen examples of before (“Creating a custom label function on a Flex LineChart control’s linear axis” and “Creating a custom label function on a Flex LineChart control’s category axis” respectively) but it’s always fun to see a few of these things in a single example. Full code after the jump. Continue reading → Changing a chart legend’s direction
November , 2007Charting, Legend, LineChartdirection
The following example shows how you can change the direction of a Flex chart’s legend by setting the direction property, as seen in the following snippet: <mx:Legend dataProvider="{lineChart}" direction="horizontal" />
Full code after the jump. Continue reading → Creating a custom label function on a Flex LineChart control’s category axis
November , 2007CategoryAxis, Charting, LineChartlabelFunction
The following example shows how you can create a custom label function on a CategoryAxis in a Flex LineChart control. For an example of creating a custom label function for the vertical/linear axis, check out “Creating a custom label function on a Flex LineChart control’s linear axis”. Full code after the jump. Continue reading → Changing the horizontal grid line frequency in a Flex LineChart control using the horizontalChangeCount style
November , 2007Charting, GridLines, LineChartbackgroundElements, horizontalChangeCount
The following example shows how you can adjust the interval of horizontal grid lines in a LineChart by setting the horizontalChangeCount style. Full code after the jump. Continue reading → Displaying grid lines in a Flex LineChart control
November , 2007Charting, GridLines, LineChartbackgroundElements, direction
The following example shows how you can add horizontal or vertical (or both) grid lines to a LineChart contol in Flex by setting the direction style in the GridLines tags, as seen in the following snippet: <mx:LineChart dataProvider="{dp}"> <mx:backgroundElements>
<mx:GridLines direction="vertical" />
</mx:backgroundElements> </mx:LineChart>
Full code after the jump. Continue reading → Alternating background row colors in a Flex LineSeries chart
November , 2007Charting, GridLines, LineChart, SolidColorbackgroundElements, horizontalAlternateFill, horizontalFill
The following example shows how you can alternate background row colors in a LineSeries chart in Flex by setting the horizontalAlternateFill style in the GridLines object, as seen in the following snippet: <mx:LineChart showDataTips="true" dataProvider="{dp}"> <mx:backgroundElements>
<mx:GridLines>
<mx:horizontalAlternateFill>
<mx:SolidColor color="haloSilver" alpha="0.25" />
</mx:horizontalAlternateFill>
</mx:GridLines>
</mx:backgroundElements> </mx:LineChart>
Full code after the jump. Continue reading → Customizing the horizontal grid lines in a Flex LineChart control
November , 2007Charting, GridLines, LineCharthorizontalStroke, stroke
The following example shows how you can customize the horizontal grid lines in a Flex LineChart control by the horizontalStroke style. Full code after the jump. Continue reading → Creating a custom label function on a Flex LineChart control’s linear axis
November , 2007Charting, CurrencyFormatter, LinearAxis, LineChartlabelFunction
The following example shows how you can create a custom label function on a LinearAxis in a Flex LineChart control. For an example of creating a custom label function for the horizontal/category axis, check out “Creating a custom label function on a Flex LineChart control’s category axis”. Full code after the jump. Continue reading →

找到一个Flex中LineChart很好的学习博客的更多相关文章

  1. 一个很好的Delphi博客

    一个很好的Delphi博客,主人叫万一 http://www.cnblogs.com/del/archive/2011/09/21/2183007.html

  2. 关于将sublime中的代码高亮导出到博客中

    第一步:打开sublime编辑器,用快捷键ctrl+shift+p调出control panel,在出现的输入框中输入install,按回车键 第二步:然后输入插件名称sublimehighlight ...

  3. Linux内核分析第二周学习博客——完成一个简单的时间片轮转多道程序内核代码

    Linux内核分析第二周学习博客 本周,通过实现一个简单的操作系统内核,我大致了解了操作系统运行的过程. 实验主要步骤如下: 代码分析: void my_process(void) { int i = ...

  4. 怎样将word中的图片插入到CSDN博客中

    目前大部分的博客作者在用Word写博客这件事情上都会遇到以下3个痛点: 1.所有博客平台关闭了文档发布接口,用户无法使用Word,Windows Live Writer等工具来发布博客.使用Word写 ...

  5. 如何在自己的CSDN博客中增添【高大上】的博客栏目?

    前几天看到过一位博主的博客界面,向下看 ☟ (博主对不起啊!把你的公众号给抹了~~~),感觉做这个东西挺好玩的,而且我竟然找不到在哪个地方可以设置!在百度上也没有搜到教程,最后问了一下贺老师知道了入口 ...

  6. 转载一个不错的Scrapy学习博客笔记

    背景: 最近在学习网络爬虫Scrapy,官网是 http://scrapy.org 官方描述:Scrapy is a fast high-level screen scraping and web c ...

  7. 在Linux系统中同步更新我们的Github博客

    原理介绍 类似于版本管理,我们把我们的hexo博客文件系统在Github上建立一个分支,通过管理分支提交最新的博客文件系统,保证我们博客框架的更新.然后我们基于最新的博客框架,撰写文章,进行Githu ...

  8. 如何在github上搭建一个免费的 无限流量的静态网页博客Github pages

    前言: 看到很多相关的教程,但是在实际操作的时候还是遇见了不少问题,这里记录分享一下我的操作流程.免费空间用过很多,博客也用过一些,听说了github后就想试着玩一下这个静态库,感觉挺不错的,操作也比 ...

  9. 一个基于Vue.js+Mongodb+Node.js的博客内容管理系统

    这个项目最初其实是fork别人的项目.当初想接触下mongodb数据库,找个例子学习下,后来改着改着就面目全非了.后台和数据库重构,前端增加了登录注册功能,仅保留了博客设置页面,但是也优化了. 一.功 ...

随机推荐

  1. java创建线程的几种方式

    1.继承Thread类 /** * @author Ash * @date: 2016年8月6日 下午10:56:45 * @func: 通过继承Thread类来实现多线程 * @email 4086 ...

  2. 使用AStyle进行代码格式化

    转自:http://www.cnblogs.com/JerryTian/archive/2012/09/20/AStyle.html 在日常的编码当中,大家经常要遵照一些设计规范,如命名规则.代码格式 ...

  3. jquery 仿百度搜索下拉框的插件

    转载地址:http://www.open-open.com/lib/view/open1420624048437.html 今天写了个下拉插件分享出来 效果: , 可以搜素,也可以使用上下键选择匹配出 ...

  4. 实现Activity刷新 (转)

    目前刷新Acitivity,只想到几种方法.仅供参考,如果您有更好的方法,请赐教. 程序界面: 点击refresh view可以刷新界面,点击write content可以在EditText中自动写入 ...

  5. 用DOM4J解析XML文件案例

    用DOM4J解析XML文件案例,由于DOM4J不像JAXP属于JAVASE里,所以如果要使用DOM4J,则必须额外引入jar包,如图:

  6. loadruner知识点小结

    1.Download Filters功能 帮助在回放脚本的时候对某些特定的访问进行屏蔽,解决页面读取中跨服务器带来数据影响的问题.  过滤规则中有3中策略,即URL.Host.HostSfx 区别于: ...

  7. static之用法

    本文转载于http://www.cnblogs.com/stoneJin/archive/2011/09/21/2183313.html 在C语言中,static的字面意思很容易把我们导入歧途,其实它 ...

  8. CSS3 calc()的使用

    前言: 平时在制作页面的时候,总会碰到有的元素是100%的宽度.众所周知,如果元素宽度为100%时,其自身不带其他盒模型属性设置还好,要是有别的,那将导致盒子撑破.比如说,有一个边框,或者说有marg ...

  9. SpringJDBC解析1-使用示例

    JDBC(Java Data Base Connectivity,Java数据库连接)是一种用于执行SQL语句的JavaAPI,可以为多种关系数据库提供统一访问,它由一组用Java语言编写的类和接口组 ...

  10. PHP 传值和传引用、传地址的区别

    传值,   是把实参的值赋值给行参   那么对行参的修改,不会影响实参的值   传地址   是传值的一种特殊方式,只是他传递的是地址,不是普通的如int   那么传地址以后,实参和行参都指向同一个对象 ...