Add a “Target Line” to a Coldfusion 8 CFChart Bar Graph

前端 未结 1 1584
执笔经年
执笔经年 2021-01-25 12:39

I have a Coldfusion CfChart Bar Graph, that has X-Axis = Questions, and Y-Axis = Scores (0-100), but what I want to do is add a a Target Score Line on the graph, that goes acros

相关标签:
1条回答
  • 2021-01-25 12:48

    Yes, you can generate background ranges by using a custom style. See CFCHART-Tip--Background-Ranges

    ie Using the <limits> element

    <frameChart is3d="false">
        <yAxis>
          <limits index="0" min="0" max="85" color="#ff8000"/>
        </yAxis>
    </frameChart>
    
    0 讨论(0)
提交回复
热议问题