# Kibana Visualize - Field not showing

**URL:** https://discuss.elastic.co/t/kibana-visualize-field-not-showing/86747
**Category:** Kibana
**Created:** [May 23, 2017, 12:20am UTC](https://discuss.elastic.co/t/kibana-visualize-field-not-showing/86747 "2017-05-23T00:20:02Z")
**Posts on this page:** 1
**Showing post:** 2

<div class="post-metadata">

### Author: ![Jai\_Prakash\_Bhardwaj](https://avatars.discourse-cdn.com/v4/letter/j/49beb7/32.png) [@Jai\_Prakash\_Bhardwaj](https://discuss.elastic.co/u/Jai_Prakash_Bhardwaj)
#### Post date: [May 23, 2017, 6:28am UTC](https://discuss.elastic.co/t/kibana-visualize-field-not-showing/86747/2 "2017-05-23T06:28:21Z")

</div>

Hi Jim,

I encountered the same issue, not sure if the approach is right, but I mapped the fields to keywords, or use the raw multifield mapping,

```auto
PUT my_index
{
  "mappings": {
    "my_type": {
      "properties": {
        "city": {
          "type": "text",
          "fields": {
            "raw_city": { 
              "type": "keyword"
            }
          }
        }
      }
    }
  }
}

```

reference link:  
[https://www.elastic.co/guide/en/elasticsearch/reference/current/multi-fields.html](https://www.elastic.co/guide/en/elasticsearch/reference/current/multi-fields.html)

and it worked for me.

Hope this helps you too

Best,  
J

---

_[View the full topic](https://discuss.elastic.co/t/kibana-visualize-field-not-showing/86747)._
