Infragistics Home

Infragistics Forums

Infragistics community online discussions.
Welcome to Infragistics Forums Sign in | FAQ
in Search

Can I label the Axis on 3d Point Chart?

Last post 05-20-2008 9:44 by [Infragistics] Max Rivlin. 2 replies.
Page 1 of 1 (3 items)
Sort Posts: Previous Next
  • 05-15-2008 12:15

    Can I label the Axis on 3d Point Chart?

    I have a 3d point chart that looks like this:

    Chart Needing Labels I need to label the axes like so:

    The axis running from top to bottom, which reads 3000 to -9000 should be labeled "True Vertical Depth"

    The axis running left to right along the bottom with numbers ranging from -5000 to 1000 should read "East/West"

    The other axis should read "North/South" 

    I need both this label and the numeric scale (which indicates distance in feet).

    As you can see, I have experimented with setting using the right side Title to "True Vertical Depth", but when I rotate the graph as in the second image, then the "True Vertical Depth" axis is no longer on the right side and  the label is now incorrect.

    Is there a way to pin this text label to the axis, so that as I rotate the 3d chart the label follows the axis wherever it goes? 

    Also, notice that in the second graph we wind up looking through the grid wall.  Is there anyway to turn off this wall, or reorient it to the other side of the chart?

     

    rotated chart

    • Post Points: 5
  • 05-15-2008 17:22 In reply to

    Re: Can I label the Axis on 3d Point Chart?

    the chart control in my aspx file looks like this

     

                                            <igchart:UltraChart ID="IntegratedWellPlan" runat="server" BackgroundImageFileName=""
                                                BorderWidth="0px" ChartType="PointChart3D" EmptyChartText="No Chart Data"
                                                Version="7.2" Width="450" Height="450" Transform3D-XRotation="105" Transform3D-EdgeSize="0">
                                                <TitleTop Text="Integrated Well Plan, 3d view" HorizontalAlign="Center" ></TitleTop>
                                                <TitleLeft Text="True Vertical Depth" HorizontalAlign="Center"></TitleLeft>
                                                <Data />
                                                <Axis>
                                                    <X Visible="True" TickmarkInterval="10" LineThickness="1" Extent="40" TickmarkStyle="Smart" >
                                                        <StripLines>
                                                            <PE FillOpacity="255" Fill="Transparent"></PE>
                                                        </StripLines>
                                                        <ScrollScale Scale="1" Scroll="0"></ScrollScale>
                                                        <Labels ItemFormatString="&lt;DATA_VALUE:00.##&gt;" VerticalAlign="Center"
                                                            Visible="False" HorizontalAlign="Near" Font="Verdana, 7pt" ItemFormat="Custom"
                                                            FontColor="DimGray" Orientation="VerticalLeftFacing">
                                                            <SeriesLabels VerticalAlign="Center" HorizontalAlign="Far" Font="Verdana, 27pt"
                                                                Orientation="VerticalLeftFacing" Visible="True" FormatString="&lt;SERIES_LABEL&gt;">
                                                                <Layout Behavior="Auto" />
                                                            </SeriesLabels>
                                                            <Layout Behavior="Auto" />
                                                        </Labels>
                                                        <MajorGridLines AlphaLevel="255" DrawStyle="Dot" Color="Gainsboro" Visible="True"></MajorGridLines>
                                                        <MinorGridLines AlphaLevel="255" DrawStyle="Dot" Color="LightGray" Visible="False"></MinorGridLines>
                                                    </X>
                                                    <Z Visible="True" LineThickness="1" TickmarkStyle="Smart" RangeMax="0">
                                                        <StripLines>
                                                            <PE FillOpacity="255" Fill="Transparent"></PE>
                                                        </StripLines>
                                                        <ScrollScale Scale="1" Scroll="0"></ScrollScale>
                                                        <Labels ItemFormatString="&lt;DATA_VALUE:00.##&gt;"
                                                            VerticalAlign="Center" Visible="False" HorizontalAlign="Far" Font="Verdana, 7pt"
                                                            ItemFormat="Custom" FontColor="DimGray" Orientation="Horizontal">
                                                            <SeriesLabels VerticalAlign="Center" HorizontalAlign="Far" Font="Verdana, 27pt" FontColor="Black"
                                                                Orientation="Horizontal" Visible="True" FormatString="&lt;SERIES_LABEL&gt;">
                                                                <Layout Behavior="Auto">
                                                                </Layout>
                                                            </SeriesLabels>
                                                            <Layout Behavior="Auto">
                                                            </Layout>
                                                        </Labels>
                                                        <MajorGridLines AlphaLevel="255" DrawStyle="Dot" Color="Gainsboro" Visible="True"></MajorGridLines>
                                                        <MinorGridLines AlphaLevel="255" DrawStyle="Dot" Color="LightGray" Visible="False"></MinorGridLines>
                                                    </Z>
                                                    <Y Visible="True" TickmarkInterval="40" LineThickness="1" Extent="40" TickmarkStyle="Smart">
                                                        <StripLines>
                                                            <PE FillOpacity="255" Fill="Transparent"></PE>
                                                        </StripLines>
                                                        <ScrollScale Scale="1" Scroll="0"></ScrollScale>
                                                        <Labels ItemFormatString="&lt;DATA_VALUE:00.##&gt;" VerticalAlign="Center"
                                                            Visible="False" HorizontalAlign="Far" Font="Verdana, 7pt" ItemFormat="Custom"
                                                            FontColor="DimGray" Orientation="Horizontal">
                                                            <SeriesLabels VerticalAlign="Center" HorizontalAlign="Far" Font="Verdana, 27pt" FontColor="Black"
                                                                Orientation="Horizontal" Visible="True" FormatString="&lt;SERIES_LABEL&gt;">
                                                            </SeriesLabels>
                                                            <Layout Behavior="Auto">
                                                            </Layout>
                                                        </Labels>
                                                        <MajorGridLines AlphaLevel="255" DrawStyle="Dot" Color="Gainsboro" Visible="True"></MajorGridLines>
                                                        <MinorGridLines AlphaLevel="255" DrawStyle="Dot" Color="LightGray" Visible="False"></MinorGridLines>
                                                    </Y>
                                                </Axis>
                                                <Border Thickness="0" />
                                                <Tooltips Font-Italic="False" Font-Strikeout="False" Font-Underline="False" Font-Overline="False"
                                                    Font-Bold="False" FormatString="&lt;SERIES_LABEL&gt;" />
                                                <Effects>
                                                    <Effects>
                                                        <igchartprop:GradientEffect>
                                                        </igchartprop:GradientEffect>
                                                    </Effects>
                                                </Effects>
                                                <ColorModel ModelStyle="LinearRange" AlphaLevel="150" ColorBegin="Green" ColorEnd="Green" />
                                                <PointChart3D Icon="Sphere" IconSize="Small" />
                                            </igchart:UltraChart>
     

    • Post Points: 20
  • 05-20-2008 9:44 In reply to

    Re: Can I label the Axis on 3d Point Chart?

    Unfortunately, these are not the features of the chart. The wall can be turned off completely, but you cannot move or hide sections of it. The axis titles can be done with annotations, but they will also not rotate along with the 3d chart. You can request these features here:
    http://devcenter.infragistics.com/protected/requestfeature.aspx

    • Post Points: 5
Page 1 of 1 (3 items)
Powered by Community Server (Commercial Edition), by Telligent Systems