Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8075049
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 5, 20262026-06-05T14:51:42+00:00 2026-06-05T14:51:42+00:00

Anyone knows how to remove the labels from the x-axis in a Windows Phone

  • 0

Anyone knows how to remove the labels from the x-axis in a Windows Phone 7 amCharts chart?
Should be simple but I can’t find a way to do it.

So far I have the following:

<AmCharts_Windows_QuickCharts:SerialChart x:Name="chart1" DataSource="{Binding Data}" 
       CategoryValueMemberPath="Date" 
       AxisForeground="White"
       PlotAreaBackground="Black"
       GridStroke="DarkGray" 
       ScrollViewer.HorizontalScrollBarVisibility="Auto">
       <AmCharts_Windows_QuickCharts:SerialChart.Graphs>
           <AmCharts_Windows_QuickCharts:LineGraph ValueMemberPath="Value" Title="SomeTitle" Brush="Orange" />
       </AmCharts_Windows_QuickCharts:SerialChart.Graphs>
</AmCharts_Windows_QuickCharts:SerialChart>

Thank you in advance.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-05T14:51:44+00:00Added an answer on June 5, 2026 at 2:51 pm

    you can do that by removing the CategoryValueMemberPath from the SerialChart definition

    <AmCharts_Windows_QuickCharts:SerialChart x:Name="chart1" DataSource="{Binding Data}" 
       AxisForeground="White"
       PlotAreaBackground="Black"
       GridStroke="DarkGray" 
       ScrollViewer.HorizontalScrollBarVisibility="Auto">
       <AmCharts_Windows_QuickCharts:SerialChart.Graphs>
           <AmCharts_Windows_QuickCharts:LineGraph ValueMemberPath="Value" Title="SomeTitle" Brush="Orange" />
       </AmCharts_Windows_QuickCharts:SerialChart.Graphs>
    

    You can also set the MinimumCategoryGridStep to 0

    If you want to have the ticks, but not the labels, you’ll need to override the style of the SerialChart

        <Style x:Key="CategoryAxisStyle1" TargetType="amq:CategoryAxis">
            <Setter Property="Template">
                <Setter.Value>
                    <ControlTemplate TargetType="amq:CategoryAxis">
                        <Grid Background="Transparent">
                            <Grid.RowDefinitions>
                                <RowDefinition Height="Auto"/>
                                <RowDefinition Height="Auto"/>
                                <RowDefinition/>
                            </Grid.RowDefinitions>
                            <Rectangle x:Name="PART_AxisLine" Fill="{TemplateBinding Foreground}" HorizontalAlignment="Stretch" Height="2" Grid.Row="0" VerticalAlignment="Top"/>
                            <Canvas x:Name="PART_TickPanel" Height="5" Grid.Row="1" VerticalAlignment="Stretch"/>
                            <Canvas x:Name="PART_ValuesPanel" HorizontalAlignment="Stretch" Grid.Row="2" VerticalAlignment="Stretch" Visibility="Collapsed"/>
                        </Grid>
                    </ControlTemplate>
                </Setter.Value>
            </Setter>
        </Style>
        <Style x:Key="SerialChartStyle1" TargetType="amq:SerialChart">
            <Setter Property="Template">
                <Setter.Value>
                    <ControlTemplate TargetType="amq:SerialChart">
                        <Border BorderBrush="{TemplateBinding BorderBrush}" BorderThickness="{TemplateBinding BorderThickness}" Background="{TemplateBinding Background}" Padding="{TemplateBinding Padding}">
                            <Grid>
                                <Grid.RowDefinitions>
                                    <RowDefinition/>
                                    <RowDefinition Height="Auto"/>
                                </Grid.RowDefinitions>
                                <amq:ValueAxis x:Name="PART_ValueAxis" Foreground="{TemplateBinding AxisForeground}" HorizontalAlignment="Right" Margin="0,0,0,-2" Grid.Row="0" Canvas.ZIndex="100"/>
                                <amq:CategoryAxis x:Name="PART_CategoryAxis" Foreground="{TemplateBinding AxisForeground}" Grid.Row="1" Style="{StaticResource CategoryAxisStyle1}"/>
                                <Border Background="{TemplateBinding PlotAreaBackground}" Grid.Row="0">
                                    <amq:ValueGrid x:Name="PART_ValueGrid" Foreground="{TemplateBinding GridStroke}"/>
                                </Border>
                                <Border x:Name="PART_GraphCanvasDecorator" Grid.Row="0">
                                    <Canvas x:Name="PART_GraphCanvas" Background="Transparent"/>
                                </Border>
                                <amq:Legend x:Name="PART_Legend" HorizontalAlignment="Left" Margin="10,0,0,0" Grid.Row="0" Visibility="{TemplateBinding LegendVisibility}" VerticalAlignment="Top"/>
                                <Canvas Grid.Row="0">
                                    <amq:Balloon x:Name="PART_Balloon" BorderBrush="{TemplateBinding AxisForeground}" BorderThickness="2" Visibility="Collapsed"/>
                                </Canvas>
                            </Grid>
                        </Border>
                    </ControlTemplate>
                </Setter.Value>
            </Setter>
        </Style>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Does anyone know how to remove Treeitems from a Treechildren node in ZK? I
Anyone knows how to perform such query in Postgresql? SELECT * FROM tabA WHERE
Anyone knows a simple JavaScript library implementing the UNZIP algorithm? No disk-file access, only
I was wondering if anyone knows of a way to remove the application title
I would like to know if anyone knows the regex command to remove the
Does anyone know of a good way to remove vss source control bindings for
Anyone knows why my sql query doesn't work after using a try catch function?
Anyone knows the equivalent of a label control in an android device? Text box
Anyone knows a good way to use http live streaming tools on non-Mac platforms?
Anyone knows of some good Unicode tutorials with examples in C? I have to

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.