Alpha Software Mobile Development Tools:   Alpha Anywhere    |   Alpha TransForm subscribe to our YouTube Channel  Follow Us on LinkedIn  Follow Us on Twitter  Follow Us on Facebook

Announcement

Collapse

The Alpha Software Forum Participation Guidelines

The Alpha Software Forum is a free forum created for Alpha Software Developer Community to ask for help, exchange ideas, and share solutions. Alpha Software strives to create an environment where all members of the community can feel safe to participate. In order to ensure the Alpha Software Forum is a place where all feel welcome, forum participants are expected to behave as follows:
  • Be professional in your conduct
  • Be kind to others
  • Be constructive when giving feedback
  • Be open to new ideas and suggestions
  • Stay on topic


Be sure all comments and threads you post are respectful. Posts that contain any of the following content will be considered a violation of your agreement as a member of the Alpha Software Forum Community and will be moderated:
  • Spam.
  • Vulgar language.
  • Quotes from private conversations without permission, including pricing and other sales related discussions.
  • Personal attacks, insults, or subtle put-downs.
  • Harassment, bullying, threatening, mocking, shaming, or deriding anyone.
  • Sexist, racist, homophobic, transphobic, ableist, or otherwise discriminatory jokes and language.
  • Sexually explicit or violent material, links, or language.
  • Pirated, hacked, or copyright-infringing material.
  • Encouraging of others to engage in the above behaviors.


If a thread or post is found to contain any of the content outlined above, a moderator may choose to take one of the following actions:
  • Remove the Post or Thread - the content is removed from the forum.
  • Place the User in Moderation - all posts and new threads must be approved by a moderator before they are posted.
  • Temporarily Ban the User - user is banned from forum for a period of time.
  • Permanently Ban the User - user is permanently banned from the forum.


Moderators may also rename posts and threads if they are too generic or do not property reflect the content.

Moderators may move threads if they have been posted in the incorrect forum.

Threads/Posts questioning specific moderator decisions or actions (such as "why was a user banned?") are not allowed and will be removed.

The owners of Alpha Software Corporation (Forum Owner) reserve the right to remove, edit, move, or close any thread for any reason; or ban any forum member without notice, reason, or explanation.

Community members are encouraged to click the "Report Post" icon in the lower left of a given post if they feel the post is in violation of the rules. This will alert the Moderators to take a look.

Alpha Software Corporation may amend the guidelines from time to time and may also vary the procedures it sets out where appropriate in a particular case. Your agreement to comply with the guidelines will be deemed agreement to any changes to it.



Bonus TIPS for Successful Posting

Try a Search First
It is highly recommended that a Search be done on your topic before posting, as many questions have been answered in prior posts. As with any search engine, the shorter the search term, the more "hits" will be returned, but the more specific the search term is, the greater the relevance of those "hits". Searching for "table" might well return every message on the board while "tablesum" would greatly restrict the number of messages returned.

When you do post
First, make sure you are posting your question in the correct forum. For example, if you post an issue regarding Desktop applications on the Mobile & Browser Applications board , not only will your question not be seen by the appropriate audience, it may also be removed or relocated.

The more detail you provide about your problem or question, the more likely someone is to understand your request and be able to help. A sample database with a minimum of records (and its support files, zipped together) will make it much easier to diagnose issues with your application. Screen shots of error messages are especially helpful.

When explaining how to reproduce your problem, please be as detailed as possible. Describe every step, click-by-click and keypress-by-keypress. Otherwise when others try to duplicate your problem, they may do something slightly different and end up with different results.

A note about attachments
You may only attach one file to each message. Attachment file size is limited to 2MB. If you need to include several files, you may do so by zipping them into a single archive.

If you forgot to attach your files to your post, please do NOT create a new thread. Instead, reply to your original message and attach the file there.

When attaching screen shots, it is best to attach an image file (.BMP, .JPG, .GIF, .PNG, etc.) or a zip file of several images, as opposed to a Word document containing the screen shots. Because Word documents are prone to viruses, many message board users will not open your Word file, therefore limiting their ability to help you.

Similarly, if you are uploading a zipped archive, you should simply create a .ZIP file and not a self-extracting .EXE as many users will not run your EXE file.
See more
See less

Another plea for charting help

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Stan Mathews
    replied
    Re: Another plea for charting help

    Chart Data, Data Format

    left(alltrim(str( <value> ,250,0,",")),-3)
    or
    left(alltrim(str( <value> ,250,0)),-3) 'which should yield a comma thousands separator
    or
    alltrim(str( <value> ,250,0))

    Among the expressions that work correctly in the Display Format designer but yield an unusable blank chart

    case(<value> < 1000,alltrim(str(<value>)),<value> < 9999,mask(alltrim(str(<value>))," , "))

    Leave a comment:


  • Truman
    replied
    Re: Another plea for charting help

    Well thanks for your help. I have been using Alpha for charting since I first switched. However during most of the time charting in part depended outside help such as Microsoft's owc11, etc. I hope that this current approach will last for some time.

    Cheers
    Truman

    PS How did you get rid of the zeros?

    Leave a comment:


  • Stan Mathews
    replied
    Re: Another plea for charting help

    Not producing any charts. Just tried to lend a hand and explore the possibilities.

    Leave a comment:


  • Truman
    replied
    Re: Another plea for charting help

    The web side of the charting appears to be a bit richer in terms of layouts, and the data manipulation than the desktop (except for my formatting problems). There is a utility that allows you to run your WEB chart in a desktop.

    If you haven't seen my web example open the Web Program Control, right click my example and select edit, and then click Working Preview and see what I have. If you click the Design you will see the familar Chart Contol..

    I am learning that there are some limitations to the charting - or I haven't figured out how to some things. One apparent limitation is that you can format the plot-area
    but not the chart-area (or vis-versa). The implication for someone like me who produces a lot charts which get added to other presentations or docuements I am left with a white area that doesn't blend in with the given background.

    Thank for trying

    Are you using the Chart Controler, or are you developing xbasic code to produce charts?

    Truman

    Leave a comment:


  • Stan Mathews
    replied
    Re: Another plea for charting help

    I found several ways to lose the decimals but none to get the commas in the result. The expressions I tried tested fine in the designer but either didn't work in the resulting chart or the chart was a gray rectangle with no visible data.

    Not familiar or interested in the web side of things or maps.

    Leave a comment:


  • Truman
    replied
    Re: Another plea for charting help

    Yes Stan I am looking for commas on the numbers on the vertical axis. The desktop version of the Chart Control gives you the commas, but it seems to keep the zeros that are right of the decimal. Also if you look at the chart in the Web Projects Control the horizontal axis is a mess.

    I finally figured out some of the programming and have been able to produce the necessary charts. They are not formatted they as well as I would like but they will do.

    Haven't even got into programming my data on maps.

    Any suggestions welcome on the chart formatting issues.

    Thanks
    Truman

    Leave a comment:


  • Stan Mathews
    replied
    Re: Another plea for charting help

    More like this?

    graph.png

    Or is that what you meant about needing commas in the y-axis labels.
    Last edited by Stan Mathews; 09-19-2012, 01:29 PM.

    Leave a comment:


  • Truman
    replied
    Re: Another plea for charting help

    Thanks for looking at my posting. It seems that either I am the only person who has charting problems, or not many people are using this potentially useful tool. I will now attempt to attach an example. <I'll be back if this attempt fails.>

    I think that the attachment is now there. I assumed that it was not suppose to be inline?

    You will see that the desktop version is closed to what I want - although I did not want any numbers after the decimal point. The Web based example is not as nice.

    Thanks
    Truman
    Attached Files

    Leave a comment:


  • Mike Wilson
    replied
    Re: Another plea for charting help

    Truman,
    Desperate time call for desperate measures.
    Provide an example of what you need help with. An example app would be the best.

    Leave a comment:


  • Truman
    started a topic Another plea for charting help

    Another plea for charting help

    My deadline was last week but I have until the end of this week. In the past I have been able to solve most of my charting problems. I am sure that I am missing something simple but time is running out.

    I have a number of problems but my major issues is trying to improve the appearance of my charts.

    I am designing Multiple Record charts with Vertical Bars Stacked. My number one problem is formatting the Y-axis. Having a vertical axis with 5 or more digits without commas is hard to read, and use in presentation. (I can format the Y-axis with the desktop version of Chart Control V11). The X-axis seems OK if I just use a year category. If I use XY Vertical Bars Stacked I cannot format either the vertical or horizontal axis.

    One solution would be able to convert a chart to xBasic code. The Learning Xdialog examples are useful but I have not found an example using Multiple Records and Formatting the axes.

    Is there a way to generate charting code as you can with operations?

    In advance thanks
    Truman
Working...
X