Open ericfem opened 3 years ago
how to join multiple table in novajs chart. is there a feature of this kind? It can only join 1 table.
I am joining the request, is there a way to join multiple tables?
any updates or can help us with this issue?
I am joining the request, is there a way to join multiple tables?
can you show me how are you joining the request?
I am joining the request, is there a way to join multiple tables?
can you show me how are you joining the request?
This is how I am trying.
Looking at source, don't think calling multiple join()
is acting like addJoin()
.
(new DoughnutChart())
->model('app\model\SomeModel')
->join('table_1', 'table_1.id', '=', 'some_models.table_1_id')
->join('table_2', 'table_2.id', '=', 'table_1.table_2_id')
->options([
'queryFilter' => array(
[
'key' => 'table_2.table_2_attribute',
'operator' => '=',
'value' => 'some_value',
]
)
])
Describe the bug A clear and concise description of what the bug is.
To Reproduce Steps to reproduce the behavior:
Expected behavior A clear and concise description of what you expected to happen.
Screenshots If applicable, add screenshots to help explain your problem.
Dependencies Version (please complete the following information):
Desktop (please complete the following information):
Smartphone (please complete the following information):
Additional context Add any other context about the problem here.