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 3308748
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 17, 20262026-05-17T21:33:29+00:00 2026-05-17T21:33:29+00:00

I’m having difficulty with Flex charts. I’m working on a complete rewrite of a

  • 0

I’m having difficulty with Flex charts. I’m working on a complete rewrite of a flex app that has a fair bit of charting involved, and I’ve been instructed to get the look and feel as close to the previous version as possible (for the initial release).

I can’t seem to find the style property which dispays a blue, tabbed sort of effect of the chart axes. As I don’t have the rep to post an image, I’ll direct you to the adobe live docs ‘using line charts’ page (sorry, I can only post one link because of the anti spamming mechanism, see link in the edit below) – the effect is present on the vertical axis of the chart at the top of the line charts examples page.

It seems to be some kind of default setting, but I have not been able to pin it down, not even when copying chunks of the old code.

If anyone has any ideas as to how to get hold of this style, or as to what could be removing this style, I’d be extremely grateful.

Thanks for reading.

Edit:

Sorry I will try to clarify:

If you look at the chart at the top of the using line charts page in the Adobe Live docs, the vertical axis has a thick, blue tabbed style, but the horizontal axis does not.

I am trying to gain control over this blue tabbed style – specifically I want to make it appear on the horizontal axis and remove it from the vertical axis of a line chart. However, I cannot find the property which sets this style.

I know it is possible to alter this style, as I have seen examples of charts with the look I need, however there does not appear to be an obvious way to alter it.

I hope this is a bit clearer. Thanks.

  • 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-05-17T21:33:30+00:00Added an answer on May 17, 2026 at 9:33 pm

    The blue bar that comes by default is a stroke. The white divisions within it are minor ticks.

    To style it differently, you need four parts:

    1. a chart (e.g. LineChart)
    2. an Axis (e.g. LinearAxis)
    3. an AxisRenderer
    4. a Stroke (e.g. SolidColorStroke)

    Then you’ll have to connect these parts:

      var chart = new LineChart();
      var vAxis = new LinearAxis();
    
      var stroke = new SolidColorStroke();
      stroke.caps = CapsStyle.NONE;
      stroke.weight = 1;
      stroke.color = 0x000000;
    
      var axisRenderer = new AxisRenderer();
      axisRenderer.axis = vAxis;
      axisRenderer.setStyle("axisStroke", stroke);
      // Only if you don't want minor ticks to display:
      axisRenderer.setStyle("minorTickPlacement", "none");
    
      chart.verticalAxis = vAxis;
      chart.verticalAxisRenderers = [axisRenderer];
    

    You’ll find more on the topic here: http://help.adobe.com/en_US/flex/using/WS2db454920e96a9e51e63e3d11c0bf69084-7c65.html

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

No related questions found

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.