A Yashwanth

Results 29 comments of A Yashwanth

I tried the suggested fix but it doesn't work. I still get the same error. ``` self.kernel = self.add_weight(shape=(self.input_dim, self.units * 4), name='kernel', initializer=self.kernel_initializer, regularizer=self.kernel_regularizer, constraint=self.kernel_constraint) self.recurrent_kernel = self.add_weight( shape=(self.units,...

So basically you want to sell those accounts using telegram bot and you are asking him to do the work for you?

I too tired my Intel 3165 in high Sierra but didn't work.

I tested it on High Sierra Intel 3165 and it didn't work. Any ideas on how to make it work?

Yeah I faced the same issue and spent hours figuring out untill I saw the documentation page of that plugin. Duplicate of #1357

`import {default as Annotation} from 'chartjs-plugin-annotation';` This works too.

Is there any option to control the gap between the multiline labels? I am trying to remove gap completely between the multiline labels

If your element is inside the grid. then you can inject elementref on the and use this.elementref.nativeElement.parentElement.clientWidth and this.elementref.nativeElement.parentElement.clientHeight

@polhek Shouldn't `this.lastMouse.clientX = e.clientY;` be `this.lastMouse.clientX = e.clientX;` in you below changes? Is it a typo? ```js if (this.lastMouse.clientX === 0 && this.lastMouse.clientY === 0) { this.lastMouse.clientY = e.clientY;...