bar chart expresssion

zezo2021

Member
Local time
Today, 17:42
Joined
Mar 25, 2021
Messages
412
hello friends
this code is used with a query to create a bar chart in the query the problem is with big number need column to be wider how can I fix this problem

Code:
TheGraph: String(CInt([Population]),ChrW(9600))
 
use "percentage" of the Area to fill?

say you have a reference there, a Label control for example, with Y height.
to put a percentage of your [population] against Y height:

TheGragph: String(Y * [population] / [total population], ChrW$(9600))
 
use "percentage" of the Area to fill?

say you have a reference there, a Label control for example, with Y height.
to put a percentage of your [population] against Y height:

TheGragph: String(Y * [population] / [total population], ChrW$(9600))
Not understand (Y)
 
look at this demo.
see the formula of the graph textbox.
it needs 20 ChrW$(9600) character to fully "fill" the graph.
 

Attachments

Users who are viewing this thread

Back
Top Bottom