K
K
Karina2016-05-31 20:13:11
JavaScript
Karina, 2016-05-31 20:13:11

How to place rangeSelector at the bottom of the graph?

I think I've tried everything already. Yes, there are the following options:

buttonPosition: {
   x: 100,
   y: 200
}

but when the rangeSelector reaches the desired height, it just disappears. Outside of the graph, I can't see the rangeSelector. I tried adding a z-index to this class, but it didn't help either.
Thanks everyone for the replies

Answer the question

In order to leave comments, you need to log in

3 answer(s)
A
Alexey Samsonov, 2016-06-01
@forevist

most likely, the parent divok has
a piece of the range selector and disappears.

N
nikitasius, 2015-09-10
@ingwar4ik

Sampling for all customer_ids, to clarify - add where p.user_id=33for the user and / or where p.customer_id=2for the customer.
Such a selection does NOT output null fields.

select p.customer_id, p.`status`, count(p.id)
from 247250_Products p
group by p.customer_id, p.`status`

Result:
A selection that will output the null value as well:
select s.customer_id, s.status_name,
IFNULL((select count(id) from 247250_Products p where p.`status`= s.status_name),0) as 'count'
from 247250_Statuses s

Result:
sql_247250_2_cc195f18347ecc15.png

H
heartdevil, 2015-09-09
@heartdevil

hello
try this

$userArr = implode(",", $array(66,1,33,54));

SELECT s.id, s.customer_id, s.status, COUNT(s.status) AS count
FROM statuses AS s
INNER JOIN products AS p ON (p.status = s.status_name)
WHERE s.customer_id = 1 AND p.modified BETWEEN "2015-08-10" AND "2015-09-10"  AND p.user_id IN ($userArr)
GROUP BY s.status

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question