<?xml version="1.0" encoding="UTF-8"?>
	<rss version="2.0"
		xmlns:content="http://purl.org/rss/1.0/modules/content/"
		xmlns:wfw="http://wellformedweb.org/CommentAPI/"
		xmlns:dc="http://purl.org/dc/elements/1.1/"
		xmlns:atom="http://www.w3.org/2005/Atom"

			>

	<channel>
		<title>Our ComponentOne  &#187;  Topic: Issue in Chart range</title>
		<atom:link href="http://our.componentone.com/groups/topic/issue-in-chart-range/feed/feed/" rel="self" type="application/rss+xml" />
		<link>http://our.componentone.com/groups/topic/issue-in-chart-range/feed/feed/</link>
		<description></description>
		<pubDate>Sat, 25 May 2013 16:57:31 +0000</pubDate>
		<generator>http://bbpress.org/?v=2.2.4</generator>
		<language></language>

		
														
					
				<item>
					<guid>http://our.componentone.com/groups/topic/issue-in-chart-range/#post-95739</guid>
					<title><![CDATA[Issue in Chart range]]></title>
					<link>http://our.componentone.com/groups/topic/issue-in-chart-range/#post-95739</link>
					<pubDate>Thu, 24 Nov 2011 08:37:39 +0000</pubDate>
					<dc:creator>prorigo</dc:creator>

					<description>
						<![CDATA[
						<p>We are creating chart using C1.Win.C1Chart.C1Chart<br />
we are setting the values of Y-axis as in a range between 0 to 85000<br />
C1Chart.ChartArea.AxisY.Min=0<br />
C1Chart.ChartArea.AxisY.Max=446000 (appx)<br />
It’s creating intervals on Y-axis of value 50000 each. It’s creating the last interval of 400000, but our expected interval is 5,00,000 on the chart.<br />
how to ensure that the range limit will be upper limit of the intervals i.e 500000 instead of 400000.<br />
or is there any property on C1.Win.C1Chart.Axis this will return the interval slab so that we can adjust the max value.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>http://our.componentone.com/groups/topic/issue-in-chart-range/#post-212282</guid>
					<title><![CDATA[Re: Issue in Chart range]]></title>
					<link>http://our.componentone.com/groups/topic/issue-in-chart-range/#post-212282</link>
					<pubDate>Fri, 25 Nov 2011 06:43:48 +0000</pubDate>
					<dc:creator>ShashankB</dc:creator>

					<description>
						<![CDATA[
						<p>Hello,</p>
<p>It is not possible to display the maximum tick of any axis to be greater than it’s maximum value i.e the maximum value displayed at the axis is always less than or equal to the Axis’ maximum value (e.g. c1Chart1.ChartArea.AxisY.Max).Therefore you cannot display 500,000 to be maximum value when you have set c1Chart1.ChartArea.AxisY.Max=446000.</p>
<p>If you want to show the maximum value at the axis on chart to be same as provided it’s maximum value (i.e. c1Chart1.ChartArea.AxisY.Max) then all you need to do is to set the "<strong class="bbcode-strong">UnitMajor</strong>" property of the axis to be such value which can divide the range(Min to Max value of axis) such that the final value displayed is the c1Chart1.ChartArea.AxisY.Max value and not lower than that.</p>
<p>In your case you can set the values as follows:</p>
<pre class="brush: plain; title: ; notranslate">
 this.c1Chart1.ChartArea.AxisY.Min = 0;
 this.c1Chart1.ChartArea.AxisY.Max = 446000;
 this.c1Chart1.ChartArea.AxisY.UnitMajor = 44600;
</pre>
<p>After this the C1Chart willl display the maximum value 446000.</p>
<p>Please let me know in case I have misunderstood anything.</p>
<p>Regards,<br />
Shashank</p>
						]]>
					</description>

					
					
				</item>

					
		
	</channel>
	</rss>

