zhangzy0193 / visifire

Automatically exported from code.google.com/p/visifire
1 stars 4 forks source link

Issue related to Height of AxisX #314

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
xaml Code:
<vc:Chart  xmlns:vc="clr-namespace:Visifire.Charts;assembly=SLVisifire.Charts"
  Width="500" Height="300" Theme="Theme1" BorderBrush="Gray" Padding="8" AnimatedUpdate="true" ScrollingEnabled="true">

    <vc:Chart.Titles>
        <vc:Title Text="Hourly Sales"/>
    </vc:Chart.Titles>

   <vc:Chart.AxesY>
        <vc:Axis AxisMaximum="1500" AxisMinimum="100"/>
    </vc:Chart.AxesY>

    <vc:Chart.AxesX>
        <vc:Axis AxisMaximum="2/11/2009" AxisMinimum="1/31/2009"/>
    </vc:Chart.AxesX>

    <vc:Chart.Series>
        <vc:DataSeries RenderAs="Spline" >
            <vc:DataSeries.DataPoints>
                <vc:DataPoint XValue="2/1/2009 10:0:0" YValue="873"/>
                <vc:DataPoint XValue="2/2/2009 11:2:0" YValue="603"/>
                <vc:DataPoint XValue="2/3/2009 12:5:6" YValue="902"/>
                <vc:DataPoint XValue="2/4/2009 13:8:0" YValue="570"/>
                <vc:DataPoint XValue="2/5/2009 14:6:8" YValue="772"/>
                <vc:DataPoint XValue="2/6/2009 15:40:0" YValue="596"/>
                <vc:DataPoint XValue="2/7/2009 16:42:10" YValue="580"/>
                <vc:DataPoint XValue="2/8/2009 17:18:0" YValue="854"/>
                <vc:DataPoint XValue="2/9/2009 18:35:28" YValue="604"/>
                <vc:DataPoint XValue="2/10/2009 19:2:0" YValue="650"/>

            </vc:DataSeries.DataPoints>
        </vc:DataSeries>
    </vc:Chart.Series>
</vc:Chart>

Original issue reported on code.google.com by sharmila...@gmail.com on 6 Jan 2011 at 11:44