Hello,
I've been searching for an option to add a line to an area chart, but so far
I haven't found a way to do this. Could someone tell me how to do this, if
it's possible.
Thanks in advance,
HKI've had to deal with the opposite, that of removing a heavy blue line that
had been put there because of the report style I chose. I figured out that
the line was actually a border property, and the only way to get rid of it
was to set the border to White. A (None) option would have been preferrable.
"HK" <HK@.discussions.microsoft.com> wrote in message
news:B6B3793E-84FD-4555-A784-99DDD7636761@.microsoft.com...
> Hello,
> I've been searching for an option to add a line to an area chart, but so
> far
> I haven't found a way to do this. Could someone tell me how to do this, if
> it's possible.
> Thanks in advance,
> HK|||Thanks for your reply, but actually I meant a graph with an area and a
trendline. So instead of adding a line to a bar graph, I would like to add a
line to an area graph.
"Bev Kaufman" wrote:
> I've had to deal with the opposite, that of removing a heavy blue line that
> had been put there because of the report style I chose. I figured out that
> the line was actually a border property, and the only way to get rid of it
> was to set the border to White. A (None) option would have been preferrable.
>
> "HK" <HK@.discussions.microsoft.com> wrote in message
> news:B6B3793E-84FD-4555-A784-99DDD7636761@.microsoft.com...
> > Hello,
> >
> > I've been searching for an option to add a line to an area chart, but so
> > far
> > I haven't found a way to do this. Could someone tell me how to do this, if
> > it's possible.
> >
> > Thanks in advance,
> >
> > HK
>
>
Showing posts with label searching. Show all posts
Showing posts with label searching. Show all posts
Wednesday, March 21, 2012
Monday, March 12, 2012
limiting the range of select result
Hi,
i'm searching how to tell to mysql server to limit
the range of a result select.
I would like to have the equivalent of the LIMIT clause in MYSQL.
I know there is TOP but it is not sufficient because it returns
only the first n lines.
I would like to tell sqlserver to begin at a certain offset.
Any idea ?
Thxyou can use a derived table
select top 10 *
from (select top 20 * from tbl order by id) as a
order by id desc
Will get the second 10 recs.
i'm searching how to tell to mysql server to limit
the range of a result select.
I would like to have the equivalent of the LIMIT clause in MYSQL.
I know there is TOP but it is not sufficient because it returns
only the first n lines.
I would like to tell sqlserver to begin at a certain offset.
Any idea ?
Thxyou can use a derived table
select top 10 *
from (select top 20 * from tbl order by id) as a
order by id desc
Will get the second 10 recs.
Subscribe to:
Comments (Atom)