Re: How to add axis labels in bubblechart?
- To: mathgroup at smc.vnet.net
- Subject: [mg126699] Re: How to add axis labels in bubblechart?
- From: "djmpark" <djmpark at comcast.net>
- Date: Thu, 31 May 2012 02:51:43 -0400 (EDT)
- Delivered-to: l-mathgroup@mail-archive0.wolfram.com
- References: <11934448.34650.1338366719077.JavaMail.root@m06>
BubbleChart is by default a Frame plot and not an Axis plot. So use FrameLabel. BubbleChart[RandomReal[1, {10, 3}], FrameLabel -> {"x", "y"}] If you want an Axis plot (but this is not as good if the axes overlie the data) use: BubbleChart[RandomReal[1, {10, 3}], Frame -> False, Axes -> True, AxesLabel -> {"x", "y"}] David Park djmpark at comcast.net http://home.comcast.net/~djmpark/index.html From: doubleslash [mailto:doubleslash at gmail.com] Hi, I'm wondering how to add labels to axes in bubblechart. This does not work BubbleChart[data,AxesLabel->{"x","y"}] Thanks