vba - How to make a ScrollBar visible on a chart in Visual Basic forms -


i have chart needs scrollbar. funny thing scrollbar there, not visible. can interact on bottom of chart , functions ok. isn't visible. anyhow here code...

'ch chart     ch.chartareas(0)         .axisx             .minimum = chartmin             .maximum = chartmax             .interval = 1             .scaleview.size = chartrows             .scaleview.position = chartmax             .scrollbar                 .size = 20                 .buttonstyle = scrollbarbuttonstyles.smallscroll                 .ispositionedinside = true                 .enabled = true                 .backcolor = color.lightgray                 .buttoncolor = color.gray             end         end         .recalculateaxesscale()     end 

in code not shown x axes disabled. still doesn't explain why interact invisible scroll bar working now.


Comments

Popular posts from this blog

mysql - FireDac error 314 - but DLLs are in program directory -

git - How to list all releases of public repository with GitHub API V3 -

c++ - Getting C2512 "no default constructor" for `ClassA` error on the first parentheses of constructor for `ClassB`? -