I have a graph where the Y axis is logarithmic, from 10^1 down to 10^-4. Right now the labels on the axis read from 10 to 0.0001 (though really it's 0.00009999 repeating, not good), and I'd like it to read as 10 to the power of x. How can I format my labels to do that? Or at the very least, fix the last label so it doesn't look like the screenshot...
I am facing issue with using both Kendo UI for Angular and Angular Material together.
Facing below build errors if both the packages are installed.
<kendo-grid> is not a known element.
Filterable is not a known element.
Angular/cli version - 14.2.0
Kendo version - 11.1.0
Angular material version - 8.2.3
Kendo and Material are working fine separately.
I have kendo dropdown list getting data from list like text and value
When I load the page I need to set the dropdown value
<kendo-dropdownlist [data]="item.listAnswerOptions" id="Q{{item.QuestionId}}" [valuePrimitive]="true" textField="text" valueField="value" [(ngModel)]="item.EncAnswerOption"> </kendo-dropdownlist>
where In
[(ngModel)]="item.EncAnswerOption">
item.EncAnswerOption has value to be set
I have a kendo grid that contains data that comes from a DB call.
Currently the export excel button extracts all the data equal to the datasource.
It is mapped into java.
I would like that when compiling the filters of the kendo grid when I click on the button it extracts only the filtered data
<kendo-grid
[data]="gridData"
[pageSize]="state.take"
[skip]="state.skip"
[sort]="state.sort"
[filter]="state.filter"
[sortable]="true"
[pageable]="true"
[filterable]="true"
[selectable]="true"
[style.minHeight.px]="minMaxHeight"
[style.maxHeight.px]="minMaxHeight"
(dataStateChange)="dataStateChange($event)">
<kendo-grid-column field="name" title="{{'name' | translate}}"></kendo-grid-column>
<kendo-grid-column field="month" title="{{'month' | translate}}"></kendo-grid-column>
</kendo-grid>
how to change the dollar label to that of the local currency.
With i18n dynamically
<kendo-grid-column class="price-col" field="price" title="Price" [width]="80">
<ng-template kendoGridHeaderTemplate let-dataItem>
Price
<span class="grid-header-subtitle">(Intraday)</span>
</ng-template>
<ng-template kendoGridCellTemplate let-dataItem>
{{ dataItem.price | currency: 'EUR' }}
</ng-template>
</kendo-grid-column>
Hi.
I have seen the following Date Picker.
Is it possible to implement such a behaviour for Telerik Kendo UI Date Picker?
If yes, how would I do something like that?
Best regards
M
Say I have a form:
First Name
Last Name
Address
I don't wont to export Last Name that is in a middle of export content.