* add Type and HasColorData to column types dialog

* version patch

* handle dates when color parsing hex codes

* check color for Date type
This commit is contained in:
Dan Marshall 2023-06-23 11:34:09 -07:00 коммит произвёл GitHub
Родитель 392b42fbb5
Коммит 3948c3ef72
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
2 изменённых файлов: 6 добавлений и 0 удалений

Просмотреть файл

@ -161,7 +161,9 @@ function _ColumnTypeChanger(_props: Props) {
<thead>
<tr>
<th>{strings.labelColumnName}</th>
<th>{strings.labelColumnType}</th>
<th>{strings.labelColumnDistinct}</th>
<th>{strings.labelColumnHasColorData}</th>
<th>{strings.labelColumnIsColorData}</th>
</tr>
</thead>
@ -169,7 +171,9 @@ function _ColumnTypeChanger(_props: Props) {
{state.categoricalColumns.map((c, i) => (
<tr key={i}>
<td>{c.name}</td>
<td>{c.type}</td>
<td>{c.stats.distinctValueCount}</td>
<td>{(!!c.stats.hasColorData).toString()}</td>
<td>{(!!c.isColorData).toString()}</td>
</tr>
))}

Просмотреть файл

@ -81,7 +81,9 @@ export const strings = {
labelChartSettings: 'Chart settings',
labelEditColumn: 'Edit',
labelColumnName: 'Column name',
labelColumnType: 'Column type',
labelColumnDistinct: 'Distinct values',
labelColumnHasColorData: 'Has color data',
labelColumnIsColorData: 'Is color data',
labelColumnQuantitativeMin: 'Min',
labelColumnQuantitativeMax: 'Max',