fslaborg / FSharp.Charting

Charting library suitable for interactive F# scripting
http://fslab.org/FSharp.Charting/
Other
216 stars 67 forks source link

Labels disappear at 10 columns #103

Closed cmmurray closed 7 years ago

cmmurray commented 8 years ago

Maybe this is a known limitation (?) but it seems like every other column label is dropped once there are 10 of them.

This works fine..

[1 .. 9]
|> Seq.map (fun x -> x.ToString(),x)
|> Chart.Column

This fails

[1 .. 10]
|> Seq.map (fun x -> x.ToString(),x)
|> Chart.Column
tpetricek commented 8 years ago

I think this is just a design issue - they're there, but not rendered so that everything fits. I guess increasing the chart size or making label fonts smaller should get them back.